aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Berman2013-06-09 23:22:33 +0200
committerStephen Berman2013-06-09 23:22:33 +0200
commit2a97b47f0878cbda86cb6ba0e7e744924810b70e (patch)
tree0540c14059f66cb18e2091fb5b48f8402e7615d1
parentd7a49dae500b62803d35dfc47d99f462479fb66d (diff)
downloademacs-2a97b47f0878cbda86cb6ba0e7e744924810b70e.tar.gz
emacs-2a97b47f0878cbda86cb6ba0e7e744924810b70e.zip
* todos.el (todos-edit-done-item-comment): Rename from
todos-done-item-add-edit-or-delete-comment. (todos-key-bindings-t): Use it.
-rw-r--r--lisp/calendar/ChangeLog6
-rw-r--r--lisp/calendar/todos.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/calendar/ChangeLog b/lisp/calendar/ChangeLog
index 0d8fda0d147..a0c527faa12 100644
--- a/lisp/calendar/ChangeLog
+++ b/lisp/calendar/ChangeLog
@@ -1,5 +1,11 @@
12013-06-09 Stephen Berman <stephen.berman@gmx.net> 12013-06-09 Stephen Berman <stephen.berman@gmx.net>
2 2
3 * todos.el (todos-edit-done-item-comment): Rename from
4 todos-done-item-add-edit-or-delete-comment.
5 (todos-key-bindings-t): Use it.
6
72013-06-09 Stephen Berman <stephen.berman@gmx.net>
8
3 * todos.el: Fix and improve item date string editing. 9 * todos.el: Fix and improve item date string editing.
4 (todos-date-pattern): Make dayname an explicitly numbered group. 10 (todos-date-pattern): Make dayname an explicitly numbered group.
5 (todos-basic-edit-item-header): Set match for dayname and use it 11 (todos-basic-edit-item-header): Set match for dayname and use it
diff --git a/lisp/calendar/todos.el b/lisp/calendar/todos.el
index 4f83ead0d48..5b2c465457b 100644
--- a/lisp/calendar/todos.el
+++ b/lisp/calendar/todos.el
@@ -2795,7 +2795,7 @@ visible."
2795 ;; When done items are shown, put cursor on first just done item. 2795 ;; When done items are shown, put cursor on first just done item.
2796 (when opoint (goto-char opoint))))))) 2796 (when opoint (goto-char opoint)))))))
2797 2797
2798(defun todos-done-item-add-edit-or-delete-comment (&optional arg) 2798(defun todos-edit-done-item-comment (&optional arg)
2799 "Add a comment to this done item or edit an existing comment. 2799 "Add a comment to this done item or edit an existing comment.
2800With prefix ARG delete an existing comment." 2800With prefix ARG delete an existing comment."
2801 (interactive "P") 2801 (interactive "P")
@@ -5989,7 +5989,7 @@ Filtered Items mode following todo (not done) items."
5989 ("et" todos-edit-item-time) 5989 ("et" todos-edit-item-time)
5990 ("eyy" todos-edit-item-diary-inclusion) 5990 ("eyy" todos-edit-item-diary-inclusion)
5991 ("eyk" todos-edit-item-diary-nonmarking) 5991 ("eyk" todos-edit-item-diary-nonmarking)
5992 ("ec" todos-done-item-add-edit-or-delete-comment) 5992 ("ec" todos-edit-done-item-comment)
5993 ("d" todos-item-done) 5993 ("d" todos-item-done)
5994 ("i" ,todos-insertion-map) 5994 ("i" ,todos-insertion-map)
5995 ("k" todos-delete-item) 5995 ("k" todos-delete-item)