aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjave2014-12-31 17:34:44 +0100
committerjave2014-12-31 17:34:44 +0100
commit1eb82c5dbecf3f95a41d9aed78dbcfa4c289b5ce (patch)
treed4e8a95c17ddb145a690e29c9b2a61a1e3776b1f
parent993c4bc08a1f50d5a4591f05f60ce7d8983ebfda (diff)
downloademacs-1eb82c5dbecf3f95a41d9aed78dbcfa4c289b5ce.tar.gz
emacs-1eb82c5dbecf3f95a41d9aed78dbcfa4c289b5ce.zip
reverted mysterious spuriouschange in otodo-mode
-rw-r--r--lisp/obsolete/otodo-mode.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/obsolete/otodo-mode.el b/lisp/obsolete/otodo-mode.el
index c3a4b082be3..d551d167a91 100644
--- a/lisp/obsolete/otodo-mode.el
+++ b/lisp/obsolete/otodo-mode.el
@@ -1,6 +1,6 @@
1;;; todo-mode.el --- major mode for editing TODO list files 1;;; todo-mode.el --- major mode for editing TODO list files
2 2
3;; Copyright (C) 1997, 1999, 2001-2013 Free Software Foundation, Inc. 3;; Copyright (C) 1997, 1999, 2001-2014 Free Software Foundation, Inc.
4 4
5;; Author: Oliver Seidel <privat@os10000.net> 5;; Author: Oliver Seidel <privat@os10000.net>
6;; Maintainer: Stephen Berman <stephen.berman@gmx.net> 6;; Maintainer: Stephen Berman <stephen.berman@gmx.net>
@@ -272,7 +272,7 @@
272 272
273This is useful in conjunction with `calendar' and `diary' if you use 273This is useful in conjunction with `calendar' and `diary' if you use
274 274
275#include \"~/.todo-do\" 275#include \"~/.emacs.d/todo-do\"
276 276
277in your diary file to include your todo list file as part of your 277in your diary file to include your todo list file as part of your
278diary. With the default value \"*/*\" the diary displays each entry 278diary. With the default value \"*/*\" the diary displays each entry
@@ -284,10 +284,12 @@ the diary file somewhat."
284 :group 'todo) 284 :group 'todo)
285(defcustom todo-file-do (locate-user-emacs-file "todo-do" ".todo-do") 285(defcustom todo-file-do (locate-user-emacs-file "todo-do" ".todo-do")
286 "TODO mode list file." 286 "TODO mode list file."
287 :version "24.4" ; added locate-user-emacs-file
287 :type 'file 288 :type 'file
288 :group 'todo) 289 :group 'todo)
289(defcustom todo-file-done (locate-user-emacs-file "todo-done" ".todo-done") 290(defcustom todo-file-done (locate-user-emacs-file "todo-done" ".todo-done")
290 "TODO mode archive file." 291 "TODO mode archive file."
292 :version "24.4" ; added locate-user-emacs-file
291 :type 'file 293 :type 'file
292 :group 'todo) 294 :group 'todo)
293(defcustom todo-mode-hook nil 295(defcustom todo-mode-hook nil
@@ -321,6 +323,7 @@ window."
321 323
322Not in TODO format, but diary compatible. 324Not in TODO format, but diary compatible.
323Automatically generated when `todo-save-top-priorities' is non-nil." 325Automatically generated when `todo-save-top-priorities' is non-nil."
326 :version "24.4" ; added locate-user-emacs-file
324 :type 'string 327 :type 'string
325 :group 'todo) 328 :group 'todo)
326 329
@@ -916,7 +919,7 @@ If INCLUDE-SEP is non-nil, return point after the separator."
916 ["Quit" todo-quit t] 919 ["Quit" todo-quit t]
917 )) 920 ))
918 921
919;; As calendar reads .todo-do before todo-mode is loaded. 922;; As calendar reads todo-file-do before todo-mode is loaded.
920;;;###autoload 923;;;###autoload
921(define-derived-mode todo-mode nil "TODO" 924(define-derived-mode todo-mode nil "TODO"
922 "Major mode for editing TODO lists." 925 "Major mode for editing TODO lists."