]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug#5477.
authorStephen Berman <stephen.berman@gmx.net>
Wed, 27 Jan 2010 04:00:54 +0000 (20:00 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 27 Jan 2010 04:00:54 +0000 (20:00 -0800)
Stephen Berman  <stephen.berman at gmx.net>:

(diary-unhide-everything): Handle narrowed buffers.

lisp/ChangeLog
lisp/calendar/diary-lib.el

index 5aa791342f28962914f444f663f411e1f0866e51..8ac8d5ed450224a0a261f94fc745affa35421e90 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
+
+       * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
+       buffers.  (Bug#5477)
+
 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
 
        * files.el (delete-directory): Handle moving to trash without
index e1400cc2fa6455470841c4e9b73fca4dc82018f3..8fb464aa7e67aec4e18b66a4401d257bb84254b8 100644 (file)
@@ -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