diff options
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-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)) |