]> git.eshelyaron.com Git - emacs.git/commitdiff
(hide-sublevels): Don't hide trailing newline (and fix paren typo).
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 19 Mar 2010 03:32:47 +0000 (23:32 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 19 Mar 2010 03:32:47 +0000 (23:32 -0400)
lisp/ChangeLog
lisp/outline.el

index 4cdff3848be629162698df8125afa63bfdb45a2f..3ff90f20d215e8cd50dc5bf888734050f46ac104 100644 (file)
@@ -1,7 +1,11 @@
+2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * outline.el (hide-sublevels): Don't hide trailing newline (and fix
+       parent typo).
+
 2010-03-19  Glenn Morris  <rgm@gnu.org>
 
-       * password-cache.el (password-cache, password-cache-expiry):
-       Autoload.
+       * password-cache.el (password-cache, password-cache-expiry): Autoload.
 
 2010-03-18  Glenn Morris  <rgm@gnu.org>
 
@@ -37,8 +41,8 @@
 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/secrets.el (top): Register the D-Bus signals only when the
-       service "org.freedesktop.secrets" can be pinged.  Provide
-       subfeature 'enabled.
+       service "org.freedesktop.secrets" can be pinged.
+       Provide subfeature `enabled'.
 
 2010-03-14  Juri Linkov  <juri@jurta.org>
 
index 5b10de231f2aa8343d46806907acae0d75be0c4f..549a88446153e56a70d9da489afbfd9de8b68b14 100644 (file)
@@ -914,8 +914,12 @@ Show the heading too, if it is currently invisible."
       (outline-map-region
        (lambda ()
         (if (<= (funcall outline-level) levels)
-            (outline-show-heading)))
-       beg end)))
+            (outline-show-heading)
+           beg end))
+       ;; Finally unhide any trailing newline.
+       (goto-char (point-max))
+       (if (and (bolp) (not (bobp)) (outline-invisible-p (1- (point))))
+           (outline-flag-region (1- (point)) (point) nil)))))
   (run-hooks 'outline-view-change-hook))
 
 (defun hide-other ()