diff options
| author | Oliver Seidel | 1998-01-12 11:43:22 +0000 |
|---|---|---|
| committer | Oliver Seidel | 1998-01-12 11:43:22 +0000 |
| commit | 6fe3681b0046064995937b822da04855eaf17c8c (patch) | |
| tree | 71251ce3eb0e17dd5f472e7e88bb9080384f2077 | |
| parent | 7792090e89e1732e040ab4d79c48e8b19e5569a6 (diff) | |
| download | emacs-6fe3681b0046064995937b822da04855eaf17c8c.tar.gz emacs-6fe3681b0046064995937b822da04855eaf17c8c.zip | |
Added patch from Don Hejna <djhejna@oasis.ambit.com>.
| -rw-r--r-- | lisp/calendar/todo-mode.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el index 7cd68bb9e7f..fc167b45b25 100644 --- a/lisp/calendar/todo-mode.el +++ b/lisp/calendar/todo-mode.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Oliver.Seidel@cl.cam.ac.uk (was valid on Aug 2, 1997) | 5 | ;; Author: Oliver.Seidel@cl.cam.ac.uk (was valid on Aug 2, 1997) |
| 6 | ;; Created: 2 Aug 1997 | 6 | ;; Created: 2 Aug 1997 |
| 7 | ;; Version: $Id: todo-mode.el,v 1.32 1997/12/03 12:18:20 os10000 Exp os10000 $ | 7 | ;; Version: $Id: todo-mode.el,v 1.33 1997/12/04 17:45:22 os10000 Exp os10000 $ |
| 8 | ;; Keywords: Categorised TODO list editor, todo-mode | 8 | ;; Keywords: Categorised TODO list editor, todo-mode |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| @@ -96,7 +96,7 @@ | |||
| 96 | ;; | 96 | ;; |
| 97 | ;; Which version of todo-mode.el does this documentation refer to? | 97 | ;; Which version of todo-mode.el does this documentation refer to? |
| 98 | ;; | 98 | ;; |
| 99 | ;; $Id: todo-mode.el,v 1.32 1997/12/03 12:18:20 os10000 Exp os10000 $ | 99 | ;; $Id: todo-mode.el,v 1.33 1997/12/04 17:45:22 os10000 Exp os10000 $ |
| 100 | ;; | 100 | ;; |
| 101 | ;; Pre-Requisites | 101 | ;; Pre-Requisites |
| 102 | ;; | 102 | ;; |
| @@ -267,6 +267,9 @@ | |||
| 267 | ;;; Change Log: | 267 | ;;; Change Log: |
| 268 | 268 | ||
| 269 | ;; $Log: todo-mode.el,v $ | 269 | ;; $Log: todo-mode.el,v $ |
| 270 | ;; Revision 1.33 1997/12/04 17:45:22 os10000 | ||
| 271 | ;; Another patch by Michael Cook to fix annotation. | ||
| 272 | ;; | ||
| 270 | ;; Revision 1.32 1997/12/03 12:18:20 os10000 | 273 | ;; Revision 1.32 1997/12/03 12:18:20 os10000 |
| 271 | ;; Added category patch by Michael R Cook <mcook@cognex.com>. | 274 | ;; Added category patch by Michael R Cook <mcook@cognex.com>. |
| 272 | ;; | 275 | ;; |
| @@ -655,7 +658,8 @@ Use `todo-categories' instead.") | |||
| 655 | "Make TODO mode display the current category correctly." | 658 | "Make TODO mode display the current category correctly." |
| 656 | (let ((name (nth todo-category-number todo-categories))) | 659 | (let ((name (nth todo-category-number todo-categories))) |
| 657 | (setq mode-line-buffer-identification | 660 | (setq mode-line-buffer-identification |
| 658 | (concat "Category: " name)) | 661 | ;; (concat "Category: " name)) |
| 662 | (concat "Category: " (format "%18s" name))) | ||
| 659 | (widen) | 663 | (widen) |
| 660 | (goto-char (point-min)) | 664 | (goto-char (point-min)) |
| 661 | (search-forward-regexp | 665 | (search-forward-regexp |