aboutsummaryrefslogtreecommitdiff
path: root/emacs/.emacs.d/lisp
diff options
context:
space:
mode:
authorYuchen Pei <id@ypei.org>2023-11-08 00:38:04 +1100
committerYuchen Pei <id@ypei.org>2023-11-08 00:38:04 +1100
commitca76547b69f2b9fb13e757229235e702836e3a2b (patch)
tree074980ca3b18f548d60b202bbbde4613e1cffe77 /emacs/.emacs.d/lisp
parent91894c16a1064c3a0ea780b85134c0e30af2b946 (diff)
[emacs] Some minor changes
Diffstat (limited to 'emacs/.emacs.d/lisp')
-rw-r--r--emacs/.emacs.d/lisp/my/my-org.el2
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))