diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-02-19 18:48:58 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-02-19 18:48:58 +0000 |
commit | 8d683c8e16315d3cc114bc271b7ea493e8c24d2c (patch) | |
tree | c9108fc103813cb54fe2d9b553690c7c3ed16c26 /lisp/outline.el | |
parent | c822571ac0c6cbd75ce3981da03513774a254375 (diff) | |
download | emacs-8d683c8e16315d3cc114bc271b7ea493e8c24d2c.tar.gz |
(hide-sublevels): Keep empty last line, if available.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/lisp/outline.el b/lisp/outline.el index 20dfb2429ef..579997754f2 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -856,19 +856,25 @@ Show the heading too, if it is currently invisible." (t 1)))) (if (< levels 1) (error "Must keep at least one level of headers")) - (let (outline-view-change-hook) - (save-excursion - (goto-char (point-min)) - ;; Skip the prelude, if any. - (unless (outline-on-heading-p t) (outline-next-heading)) + (save-excursion + (let* (outline-view-change-hook + (beg (progn + (goto-char (point-min)) + ;; Skip the prelude, if any. + (unless (outline-on-heading-p t) (outline-next-heading)) + (point))) + (end (progn + (goto-char (point-max)) + ;; Keep empty last line, if available. + (if (bolp) (1- (point)) (point))))) ;; First hide everything. - (outline-flag-region (point) (point-max) t) + (outline-flag-region beg end t) ;; Then unhide the top level headers. (outline-map-region (lambda () (if (<= (funcall outline-level) levels) (outline-show-heading))) - (point) (point-max)))) + beg end))) (run-hooks 'outline-view-change-hook)) (defun hide-other () |