diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-01-26 19:47:15 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-01-26 19:47:15 +0000 |
commit | 2cab3336f656bd98fd67057a6b7f48975a904ce3 (patch) | |
tree | b26adb3da01a5c5817fd07ccc18a62fa5e91b406 /lisp | |
parent | 7265187d6219fd88c0673ecb88da8fbd5edd6db2 (diff) | |
download | emacs-2cab3336f656bd98fd67057a6b7f48975a904ce3.tar.gz |
(forward-paragraph): Comment change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/paragraphs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 120a381b3dc..187bc9bf783 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -191,6 +191,7 @@ to which the end of the previous line belongs, or the end of the buffer." (goto-char (point-min))))) (setq arg (1+ arg))) (while (and (> arg 0) (not (eobp))) + ;; Move forward over separator lines, and one more line. (while (prog1 (and (not (eobp)) (progn (move-to-left-margin) (not (eobp))) (looking-at paragraph-separate)) |