# HG changeset patch # User Stefan Monnier # Date 1269111884 14400 # Node ID 93cf07b171cc016de1e2b7247a7693395bbe025a # Parent 4f21cfcfbb42cd1993d0951880fa80a25882e654 (hide-sublevels): Unfix the paren non-typo! (bug#5738). diff -r 4f21cfcfbb42 -r 93cf07b171cc lisp/ChangeLog --- a/lisp/ChangeLog Sat Mar 20 11:17:59 2010 -0700 +++ b/lisp/ChangeLog Sat Mar 20 15:04:44 2010 -0400 @@ -1,3 +1,7 @@ +2010-03-20 Stefan Monnier + + * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738). + 2010-03-20 Glenn Morris * textmodes/rst.el: Use faces for font-lock customization, and make the diff -r 4f21cfcfbb42 -r 93cf07b171cc lisp/outline.el --- a/lisp/outline.el Sat Mar 20 11:17:59 2010 -0700 +++ b/lisp/outline.el Sat Mar 20 15:04:44 2010 -0400 @@ -914,12 +914,12 @@ (outline-map-region (lambda () (if (<= (funcall outline-level) levels) - (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))))) + (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 ()