From 7d82a7383bdd401eb06105f3eab364d98116dc37 Mon Sep 17 00:00:00 2001 From: Stephen Berman Date: Tue, 26 Jan 2010 20:00:54 -0800 Subject: [PATCH] Fix bug#5477. Stephen Berman : (diary-unhide-everything): Handle narrowed buffers. --- lisp/ChangeLog | 5 +++++ lisp/calendar/diary-lib.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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 -- 2.39.5