aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-17 04:01:31 +0000
committerRichard M. Stallman2001-11-17 04:01:31 +0000
commit887c6c1ff4900cd420fb7dbfe2672b5546a8506f (patch)
treebf6810e32c8c48b75bccb1e0f6f53988b5b8032a
parentf1d37f3cabf57685c00be0544eff249ebb18d727 (diff)
downloademacs-887c6c1ff4900cd420fb7dbfe2672b5546a8506f.tar.gz
emacs-887c6c1ff4900cd420fb7dbfe2672b5546a8506f.zip
(todo-save): Fix previous change.
-rw-r--r--lisp/calendar/todo-mode.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 83f4e4bf90a..361cd884fb0 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -5,7 +5,7 @@
5;; Author: Oliver Seidel <os10000@seidel-space.de> 5;; Author: Oliver Seidel <os10000@seidel-space.de>
6;; [Not clear the above works, July 2000] 6;; [Not clear the above works, July 2000]
7;; Created: 2 Aug 1997 7;; Created: 2 Aug 1997
8;; Version: $Id: todo-mode.el,v 1.47 2001/07/16 12:22:59 pj Exp $ 8;; Version: $Id: todo-mode.el,v 1.48 2001/11/13 04:11:15 rms Exp $
9;; Keywords: calendar, todo 9;; Keywords: calendar, todo
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
@@ -97,7 +97,7 @@
97;; 97;;
98;; Which version of todo-mode.el does this documentation refer to? 98;; Which version of todo-mode.el does this documentation refer to?
99;; 99;;
100;; $Id: todo-mode.el,v 1.47 2001/07/16 12:22:59 pj Exp $ 100;; $Id: todo-mode.el,v 1.48 2001/11/13 04:11:15 rms Exp $
101;; 101;;
102;; Pre-Requisites 102;; Pre-Requisites
103;; 103;;
@@ -496,9 +496,8 @@ Use `todo-categories' instead.")
496 (interactive) 496 (interactive)
497 (save-excursion 497 (save-excursion
498 (save-restriction 498 (save-restriction
499 (save-buffer) 499 (save-buffer)))
500 (if todo-save-top-priorities-too (todo-save-top-priorities)) 500 (if todo-save-top-priorities-too (todo-save-top-priorities)))
501 )))
502(defalias 'todo-cmd-save 'todo-save) 501(defalias 'todo-cmd-save 'todo-save)
503 502
504(defun todo-quit () 503(defun todo-quit ()