diff options
| -rw-r--r-- | lisp/textmodes/paragraphs.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index bc4cac2a088..73dbd56240d 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el | |||
| @@ -299,7 +299,9 @@ to which the end of the previous line belongs, or the end of the buffer." | |||
| 299 | (if (< (point) (point-max)) | 299 | (if (< (point) (point-max)) |
| 300 | (goto-char start))) | 300 | (goto-char start))) |
| 301 | (setq arg (1- arg))) | 301 | (setq arg (1- arg))) |
| 302 | (constrain-to-field nil opoint t))) | 302 | (constrain-to-field nil opoint t) |
| 303 | ;; Return the number of steps that could not be done. | ||
| 304 | arg)) | ||
| 303 | 305 | ||
| 304 | (defun backward-paragraph (&optional arg) | 306 | (defun backward-paragraph (&optional arg) |
| 305 | "Move backward to start of paragraph. | 307 | "Move backward to start of paragraph. |