summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-01-26 19:47:15 +0000
committerRichard M. Stallman <rms@gnu.org>1996-01-26 19:47:15 +0000
commit2cab3336f656bd98fd67057a6b7f48975a904ce3 (patch)
treeb26adb3da01a5c5817fd07ccc18a62fa5e91b406 /lisp
parent7265187d6219fd88c0673ecb88da8fbd5edd6db2 (diff)
downloademacs-2cab3336f656bd98fd67057a6b7f48975a904ce3.tar.gz
(forward-paragraph): Comment change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/paragraphs.el1
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))