diff options
| author | Glenn Morris | 2004-03-24 18:37:57 +0000 |
|---|---|---|
| committer | Glenn Morris | 2004-03-24 18:37:57 +0000 |
| commit | 9edfb3d2a1d7480ed6566c5e7b25036d9c47eb19 (patch) | |
| tree | 46807ef56e4deac3aaa0d5ff521fc43f60513250 | |
| parent | d519ea8a53b5786891c628f2cd338a6e0fb88a47 (diff) | |
| download | emacs-9edfb3d2a1d7480ed6566c5e7b25036d9c47eb19.tar.gz emacs-9edfb3d2a1d7480ed6566c5e7b25036d9c47eb19.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/calendar/diary-lib.el | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dea317099bd..b1e928bae46 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk> | ||
| 2 | |||
| 3 | * calendar/appt.el (appt-check): Remove superfluous progn. | ||
| 4 | When finished with diary buffer: if it was not being displayed | ||
| 5 | before, kill it; otherwise restore its original state. | ||
| 6 | Suggested by Matthew Mundell <matt@mundell.ukfsn.org>. | ||
| 7 | |||
| 8 | * calendar/calendar.el (calendar-set-mode-line): Use total | ||
| 9 | available mode-line width, rather than frame-width. | ||
| 10 | |||
| 11 | * calendar/diary-lib.el (fancy-diary-display): Set mode-line | ||
| 12 | after mode change so effect not lost. | ||
| 13 | |||
| 1 | 2004-03-23 Dave Love <fx@gnu.org> | 14 | 2004-03-23 Dave Love <fx@gnu.org> |
| 2 | 15 | ||
| 3 | * dired.el (dired) <defgroup>: Add link to manual. | 16 | * dired.el (dired) <defgroup>: Add link to manual. |
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index f4150ee0825..f79a217cc32 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el | |||
| @@ -554,7 +554,6 @@ This function is provided for optional use as the `diary-display-hook'." | |||
| 554 | (message "%s" msg) | 554 | (message "%s" msg) |
| 555 | (set-buffer (get-buffer-create holiday-buffer)) | 555 | (set-buffer (get-buffer-create holiday-buffer)) |
| 556 | (setq buffer-read-only nil) | 556 | (setq buffer-read-only nil) |
| 557 | (calendar-set-mode-line date-string) | ||
| 558 | (erase-buffer) | 557 | (erase-buffer) |
| 559 | (insert (mapconcat 'identity holiday-list "\n")) | 558 | (insert (mapconcat 'identity holiday-list "\n")) |
| 560 | (goto-char (point-min)) | 559 | (goto-char (point-min)) |
| @@ -658,6 +657,7 @@ This function is provided for optional use as the `diary-display-hook'." | |||
| 658 | (setq buffer-read-only t) | 657 | (setq buffer-read-only t) |
| 659 | (display-buffer fancy-diary-buffer) | 658 | (display-buffer fancy-diary-buffer) |
| 660 | (fancy-diary-display-mode) | 659 | (fancy-diary-display-mode) |
| 660 | (calendar-set-mode-line date-string) | ||
| 661 | (message "Preparing diary...done")))) | 661 | (message "Preparing diary...done")))) |
| 662 | 662 | ||
| 663 | (defun make-fancy-diary-buffer () | 663 | (defun make-fancy-diary-buffer () |