summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 @@
2013-06-09 Stephen Berman <stephen.berman@gmx.net>
+ * todos.el (todos-edit-done-item-comment): Rename from
+ todos-done-item-add-edit-or-delete-comment.
+ (todos-key-bindings-t): Use it.
+
+2013-06-09 Stephen Berman <stephen.berman@gmx.net>
+
* todos.el: Fix and improve item date string editing.
(todos-date-pattern): Make dayname an explicitly numbered group.
(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."
;; When done items are shown, put cursor on first just done item.
(when opoint (goto-char opoint)))))))
-(defun todos-done-item-add-edit-or-delete-comment (&optional arg)
+(defun todos-edit-done-item-comment (&optional arg)
"Add a comment to this done item or edit an existing comment.
With prefix ARG delete an existing comment."
(interactive "P")
@@ -5989,7 +5989,7 @@ Filtered Items mode following todo (not done) items."
("et" todos-edit-item-time)
("eyy" todos-edit-item-diary-inclusion)
("eyk" todos-edit-item-diary-nonmarking)
- ("ec" todos-done-item-add-edit-or-delete-comment)
+ ("ec" todos-edit-done-item-comment)
("d" todos-item-done)
("i" ,todos-insertion-map)
("k" todos-delete-item)