diff options
| author | Richard M. Stallman | 1994-05-04 19:55:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-04 19:55:33 +0000 |
| commit | a9fd843b43c6f8dabe7976405c106616f3538c02 (patch) | |
| tree | 5e4c782907cb694cd8e4e0b729c9cded5b4a1e6e | |
| parent | 62357a35844fe780ad0a18dbeed8dab23549bb9a (diff) | |
| download | emacs-a9fd843b43c6f8dabe7976405c106616f3538c02.tar.gz emacs-a9fd843b43c6f8dabe7976405c106616f3538c02.zip | |
(hide-sublevels): Typo in previous change.
| -rw-r--r-- | lisp/textmodes/ooutline.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 379 | ;; Hide everything under that. | 379 | ;; Hide everything under that. |
| 380 | (outline-flag-region (point) end ?\^M) | 380 | (outline-flag-region (point) end ?\^M) |
| 381 | ;; Show the first LEVELS levels under that. | 381 | ;; Show the first LEVELS levels under that. |
| 382 | (if (> levels 1) | 382 | (if (> levels 0) |
| 383 | (show-children levels)) | 383 | (show-children levels)) |
| 384 | ;; Move to the next, since we already found it. | 384 | ;; Move to the next, since we already found it. |
| 385 | (goto-char end))))) | 385 | (goto-char end))))) |