diff options
| author | Karl Heuer | 1999-03-05 23:01:03 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-03-05 23:01:03 +0000 |
| commit | 7abbd5fe02c77560c4b17c02fc5c8c4c3efd9332 (patch) | |
| tree | c1b54f96aab65b6a60ae21c00aca2bfae9bf1f16 | |
| parent | dd89ee952087ea86cec2900f76426960dcced747 (diff) | |
| download | emacs-7abbd5fe02c77560c4b17c02fc5c8c4c3efd9332.tar.gz emacs-7abbd5fe02c77560c4b17c02fc5c8c4c3efd9332.zip | |
(outline-get-last-sibling): Doc fix.
| -rw-r--r-- | lisp/textmodes/outline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el index 6a667e749d1..9a58c0997a5 100644 --- a/lisp/textmodes/outline.el +++ b/lisp/textmodes/outline.el | |||
| @@ -704,7 +704,7 @@ Stop at the first and last subheadings of a superior heading." | |||
| 704 | (error "No previous same-level heading")))))) | 704 | (error "No previous same-level heading")))))) |
| 705 | 705 | ||
| 706 | (defun outline-get-last-sibling () | 706 | (defun outline-get-last-sibling () |
| 707 | "Move to next heading of the same level, and return point or nil if none." | 707 | "Move to previous heading of the same level, and return point or nil if none." |
| 708 | (let ((level (funcall outline-level))) | 708 | (let ((level (funcall outline-level))) |
| 709 | (outline-previous-visible-heading 1) | 709 | (outline-previous-visible-heading 1) |
| 710 | (while (and (> (funcall outline-level) level) | 710 | (while (and (> (funcall outline-level) level) |