diff options
| author | Eli Zaretskii | 2007-04-28 09:32:26 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-04-28 09:32:26 +0000 |
| commit | a9bdfaa4e48cefa69969e91fda4f79639d0fdb40 (patch) | |
| tree | 687808f48d8a1083657600d5531690a26490aaba | |
| parent | bf64294dde4e65ee9e091f2a8f4f0cec82e1f0cf (diff) | |
| download | emacs-a9bdfaa4e48cefa69969e91fda4f79639d0fdb40.tar.gz emacs-a9bdfaa4e48cefa69969e91fda4f79639d0fdb40.zip | |
(fill-paragraph): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/textmodes/fill.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 58eb93d19a0..f964b355e10 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-04-28 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/fill.el (fill-paragraph): Doc fix. | ||
| 4 | |||
| 1 | 2007-04-28 Glenn Morris <rgm@gnu.org> | 5 | 2007-04-28 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * image-dired.el (image-dired-cmd-create-thumbnail-options) | 7 | * image-dired.el (image-dired-cmd-create-thumbnail-options) |
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 7b4f73c2d1f..85b16931ec8 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -748,7 +748,9 @@ space does not end a sentence, so don't break a line there." | |||
| 748 | (fill-paragraph arg))) | 748 | (fill-paragraph arg))) |
| 749 | 749 | ||
| 750 | (defun fill-paragraph (arg) | 750 | (defun fill-paragraph (arg) |
| 751 | "Fill paragraph at or after point. Prefix ARG means justify as well. | 751 | "Fill paragraph at or after point. |
| 752 | |||
| 753 | If ARG is non-nil (interactively, with prefix argument), justify as well. | ||
| 752 | If `sentence-end-double-space' is non-nil, then period followed by one | 754 | If `sentence-end-double-space' is non-nil, then period followed by one |
| 753 | space does not end a sentence, so don't break a line there. | 755 | space does not end a sentence, so don't break a line there. |
| 754 | the variable `fill-column' controls the width for filling. | 756 | the variable `fill-column' controls the width for filling. |