From: Richard M. Stallman Date: Wed, 4 May 1994 19:55:33 +0000 (+0000) Subject: (hide-sublevels): Typo in previous change. X-Git-Tag: emacs-19.34~8537 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9fd843b43c6f8dabe7976405c106616f3538c02;p=emacs.git (hide-sublevels): Typo in previous change. --- diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el index 9709fc0d309..c039fb0b295 100644 --- a/lisp/textmodes/ooutline.el +++ b/lisp/textmodes/ooutline.el @@ -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)))))