From: Stephen Berman Date: Wed, 27 Jan 2010 04:00:54 +0000 (-0800) Subject: Fix bug#5477. X-Git-Tag: emacs-pretest-23.1.92~28^2~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7d82a7383bdd401eb06105f3eab364d98116dc37;p=emacs.git Fix bug#5477. Stephen Berman : (diary-unhide-everything): Handle narrowed buffers. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5aa791342f2..8ac8d5ed450 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-01-27 Stephen Berman + + * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed + buffers. (Bug#5477) + 2010-01-27 David De La Harpe Golden * files.el (delete-directory): Handle moving to trash without diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index e1400cc2fa6..8fb464aa7e6 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el @@ -804,7 +804,9 @@ LIST-ONLY is non-nil, in which case it just returns the list." (defun diary-unhide-everything () "Show all invisible text in the diary." (kill-local-variable 'diary-selective-display) - (remove-overlays (point-min) (point-max) 'invisible 'diary) + (save-restriction ; bug#5477 + (widen) + (remove-overlays (point-min) (point-max) 'invisible 'diary)) (kill-local-variable 'mode-line-format)) (defvar original-date) ; bound in diary-list-entries