diff options
Diffstat (limited to 'emacs/.emacs.d/lisp/my')
-rw-r--r-- | emacs/.emacs.d/lisp/my/my-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/lisp/my/my-org.el b/emacs/.emacs.d/lisp/my/my-org.el index 9900195..1f5ca63 100644 --- a/emacs/.emacs.d/lisp/my/my-org.el +++ b/emacs/.emacs.d/lisp/my/my-org.el @@ -1466,7 +1466,7 @@ will be in the format of WORK-42 CHORE-1024 etc." "Increment the next id of CATEGORY. Return the next id before incrementing." - (let* ((next-ids (my-org-read-next-ids)) + (let* ((next-ids (my-org-task-read-next-ids)) (next-id (alist-get category next-ids))) (setf (alist-get category next-ids) (1+ next-id)) |