diff options
| -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." | |||
| 191 | (goto-char (point-min))))) | 191 | (goto-char (point-min))))) |
| 192 | (setq arg (1+ arg))) | 192 | (setq arg (1+ arg))) |
| 193 | (while (and (> arg 0) (not (eobp))) | 193 | (while (and (> arg 0) (not (eobp))) |
| 194 | ;; Move forward over separator lines, and one more line. | ||
| 194 | (while (prog1 (and (not (eobp)) | 195 | (while (prog1 (and (not (eobp)) |
| 195 | (progn (move-to-left-margin) (not (eobp))) | 196 | (progn (move-to-left-margin) (not (eobp))) |
| 196 | (looking-at paragraph-separate)) | 197 | (looking-at paragraph-separate)) |