Mercurial > emacs
changeset 65509:56d6dbdf0600
(diary-show-all-entries): Fix last change,
which mistakenly removed a call to display-buffer.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 14 Sep 2005 15:22:25 +0000 |
parents | fde7876c745e |
children | 24f7082aa7af |
files | lisp/calendar/diary-lib.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calendar/diary-lib.el Wed Sep 14 15:03:10 2005 +0000 +++ b/lisp/calendar/diary-lib.el Wed Sep 14 15:22:25 2005 +0000 @@ -764,7 +764,8 @@ (pop-up-frames (window-dedicated-p (selected-window)))) (with-current-buffer (or (find-buffer-visiting d-file) (find-file-noselect d-file t)) - (diary-unhide-everything)))) + (diary-unhide-everything) + (display-buffer (current-buffer))))) (defcustom diary-mail-addr (if (boundp 'user-mail-address) user-mail-address "")