diff options
| author | Richard M. Stallman | 1996-01-26 19:47:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-01-26 19:47:15 +0000 |
| commit | 88c2fc2c6eb4f7626b16c8b27db1a04557461b31 (patch) | |
| tree | 26c43aa5327720815391338caf459ead1d84600a /lisp/textmodes | |
| parent | b1e7bb4867dadce68f2b353de610277ed53ddfe6 (diff) | |
| download | emacs-88c2fc2c6eb4f7626b16c8b27db1a04557461b31.tar.gz emacs-88c2fc2c6eb4f7626b16c8b27db1a04557461b31.zip | |
(forward-paragraph): Comment change.
Diffstat (limited to 'lisp/textmodes')
| -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)) |