X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/60dd06a08276422871cd3d491a44d10d4bdc690c..ef35abb4ad34ef7038ee99742c8646fc6f9914ed:/lisp/calendar/todo-mode.el diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index 8fd41163ea..957ac2c694 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el @@ -1,7 +1,6 @@ ;;; todo-mode.el --- major mode for editing TODO list files -;; Copyright (C) 1997, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -;; 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1999, 2001-2012 Free Software Foundation, Inc. ;; Author: Oliver Seidel ;; Maintainer: Stephen Berman @@ -32,7 +31,7 @@ ;; TODO is a major mode for EMACS which offers functionality to ;; treat most lines in one buffer as a list of items one has to ;; do. There are facilities to add new items, which are -;; categorised, to edit or even delete items from the buffer. +;; categorized, to edit or even delete items from the buffer. ;; The buffer contents are currently compatible with the diary, ;; so that the list of todo-items will show up in the FANCY diary ;; mode. @@ -62,14 +61,14 @@ ;; ;; The TODO list file has a special format and some auxiliary ;; information, which will be added by the todo-show function if -;; it attempts to visit an un-initialised file. Hence it is +;; it attempts to visit an un-initialized file. Hence it is ;; recommended to use the todo-show function for the first time, -;; in order to initialise the file, but it is not necessary +;; in order to initialize the file, but it is not necessary ;; afterwards. ;; ;; As these commands are quite long to type, I would recommend ;; the addition of two bindings to your to your global keymap. I -;; personally have the following in my initialisation file: +;; personally have the following in my initialization file: ;; ;; (global-set-key "\C-ct" 'todo-show) ; switch to TODO buffer ;; (global-set-key "\C-ci" 'todo-insert-item) ; insert new item @@ -537,7 +536,7 @@ Use `todo-categories' instead.") (unless (zerop (buffer-size buf)) (and (null todo-categories) (null todo-cats) - (error "Error in %s: File is non-empty but contains no category" + (error "Error in %s: File is non-empty but contains no category" todo-file-do))) (unless cat (setq cat (read-from-minibuffer prompt))) (with-current-buffer buf @@ -973,5 +972,4 @@ If INCLUDE-SEP is non-nil, return point after the separator." (provide 'todo-mode) -;; arch-tag: 6fd91be5-776e-4464-a109-da4ea0e4e497 ;;; todo-mode.el ends here