1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(hide-sublevels): Typo in previous change.

This commit is contained in:
Richard M. Stallman 1994-05-04 19:55:33 +00:00
parent 62357a3584
commit a9fd843b43

View File

@ -379,7 +379,7 @@ while if FLAG is `\\^M' (control-M) the text is hidden."
;; Hide everything under that.
(outline-flag-region (point) end ?\^M)
;; Show the first LEVELS levels under that.
(if (> levels 1)
(if (> levels 0)
(show-children levels))
;; Move to the next, since we already found it.
(goto-char end)))))