Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
801ba3ba
Commit
801ba3ba
authored
Mar 20, 2010
by
Stefan Monnier
Browse files
(hide-sublevels): Unfix the paren non-typo! (bug#5738).
parent
2b1400b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/outline.el
lisp/outline.el
+6
-6
No files found.
lisp/ChangeLog
View file @
801ba3ba
2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
* outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
2010-03-20 Glenn Morris <rgm@gnu.org>
* textmodes/rst.el: Use faces for font-lock customization, and make the
...
...
lisp/outline.el
View file @
801ba3ba
...
...
@@ -914,12 +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
)
)
;; 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
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment