aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorGlenn Morris2014-01-26 18:02:28 -0800
committerGlenn Morris2014-01-26 18:02:28 -0800
commitece4bae50f6ca8d03d076aa33eedd014a3af8c41 (patch)
tree66910ffa712f0643475284089989667641d1d5d2 /lisp/obsolete
parent6ea71a445d523ff95a2cd6ae0cbde8bd7ca8d878 (diff)
downloademacs-ece4bae50f6ca8d03d076aa33eedd014a3af8c41.tar.gz
emacs-ece4bae50f6ca8d03d076aa33eedd014a3af8c41.zip
Doc, comment, etc updates for increased use of locate-user-emacs-file
This should have been a prerequisite for making these changes in the first place. * doc/emacs/calendar.texi (Time Intervals): * doc/misc/idlwave.texi (Lesson III---User Catalog, Online Help) (Starting the Shell, Catalogs, User Catalog): * doc/misc/remember.texi (Quick Start): * doc/misc/viper.texi: * doc/misc/vip.texi (Customization, Customizing Constants) (Customizing Key Bindings): Update for files being in ~/.emacs.d/. * lisp/ido.el (ido-save-directory-list-file): * lisp/saveplace.el (save-place-file): * lisp/calendar/timeclock.el (timeclock-file): * lisp/net/quickurl.el (quickurl-url-file): * lisp/obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top): * lisp/progmodes/idlwave.el (idlwave-config-directory): * lisp/textmodes/remember.el (remember-data-file): Bump :version. * lisp/shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix. * lisp/strokes.el (strokes-file): Doc fix. Bump :version. (strokes-help): Doc fix. * lisp/emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix. * lisp/emulation/viper.el (viper): Doc fix for custom group. (top-level): Remove oh-so-no-longer-relevant text about vip. * lisp/obsolete/otodo-mode.el (todo-prefix): Doc fix. * etc/NEWS: Related edits.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/otodo-mode.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/obsolete/otodo-mode.el b/lisp/obsolete/otodo-mode.el
index 53220f06481..d551d167a91 100644
--- a/lisp/obsolete/otodo-mode.el
+++ b/lisp/obsolete/otodo-mode.el
@@ -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."