diff options
| author | Richard M. Stallman | 1996-12-26 22:43:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-26 22:43:17 +0000 |
| commit | 94d63a2336fb64e7b8006167b162a491874c035d (patch) | |
| tree | 4323552a95cdc59a4c742128658c0a6d9d329d65 /lisp | |
| parent | 73e0d965cc16901f662e1c4e23f79c9b68a636a7 (diff) | |
| download | emacs-94d63a2336fb64e7b8006167b162a491874c035d.tar.gz emacs-94d63a2336fb64e7b8006167b162a491874c035d.zip | |
(forward-paragraph, backward-paragraph): Doc fixes.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/textmodes/paragraphs.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index 7948723d963..cb876d55031 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el | |||
| @@ -134,7 +134,8 @@ This is desirable in modes where blank lines are the paragraph delimiters.") | |||
| 134 | 134 | ||
| 135 | (defun forward-paragraph (&optional arg) | 135 | (defun forward-paragraph (&optional arg) |
| 136 | "Move forward to end of paragraph. | 136 | "Move forward to end of paragraph. |
| 137 | With arg N, do it N times; negative arg -N means move backward N paragraphs. | 137 | With argument ARG, do it ARG times; |
| 138 | a negative argument ARG = -N means move backward N paragraphs. | ||
| 138 | 139 | ||
| 139 | A line which `paragraph-start' matches either separates paragraphs | 140 | A line which `paragraph-start' matches either separates paragraphs |
| 140 | \(if `paragraph-separate' matches it also) or is the first line of a paragraph. | 141 | \(if `paragraph-separate' matches it also) or is the first line of a paragraph. |
| @@ -265,7 +266,8 @@ to which the end of the previous line belongs, or the end of the buffer." | |||
| 265 | 266 | ||
| 266 | (defun backward-paragraph (&optional arg) | 267 | (defun backward-paragraph (&optional arg) |
| 267 | "Move backward to start of paragraph. | 268 | "Move backward to start of paragraph. |
| 268 | With arg N, do it N times; negative arg -N means move forward N paragraphs. | 269 | With argument ARG, do it ARG times; |
| 270 | a negative argument ARG = -N means move forward N paragraphs. | ||
| 269 | 271 | ||
| 270 | A paragraph start is the beginning of a line which is a | 272 | A paragraph start is the beginning of a line which is a |
| 271 | `first-line-of-paragraph' or which is ordinary text and follows a | 273 | `first-line-of-paragraph' or which is ordinary text and follows a |