summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Berman <stephen.berman@gmx.net>2014-05-09 09:50:42 +0200
committerStephen Berman <stephen.berman@gmx.net>2014-05-09 09:50:42 +0200
commit472c15bf14b52226589f8582a57d1811e1ee3ad2 (patch)
treebd65f9a6b1163dc767d7173963b21d341d314964
parent2651ed05dc472261e4cdee42b108af7a4f786843 (diff)
downloademacs-472c15bf14b52226589f8582a57d1811e1ee3ad2.tar.gz
* calendar/todo-mode.el (todo-insert-item-from-calendar):
Correct argument list to conform to todo-insert-item--basic.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calendar/todo-mode.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 87825ef838d..76db4ee829c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2014-05-09 Stephen Berman <stephen.berman@gmx.net>
+
+ * calendar/todo-mode.el (todo-insert-item-from-calendar):
+ Correct argument list to conform to todo-insert-item--basic.
+
2014-05-09 Glenn Morris <rgm@gnu.org>
* files.el (cd-absolute): Test if directory is accessible
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 4f4aefa6317..f7f2b1d1539 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -1984,7 +1984,7 @@ prompt for a todo file and then for a category in it."
(setq todo-date-from-calendar
(calendar-date-string (calendar-cursor-to-date t) t t))
(calendar-exit)
- (todo-insert-item--basic arg nil nil todo-date-from-calendar))
+ (todo-insert-item--basic arg nil todo-date-from-calendar))
(define-key calendar-mode-map "it" 'todo-insert-item-from-calendar)