diff options
| author | Chong Yidong | 2009-04-08 04:02:31 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-08 04:02:31 +0000 |
| commit | 157bca466be94c4d5ac762e9da9a56e0e44e6395 (patch) | |
| tree | f3f53914410613111f1b28e41677f1ff040a95d2 | |
| parent | 6638d82aed325b79578bc6091bb641d4c660dfe6 (diff) | |
| download | emacs-157bca466be94c4d5ac762e9da9a56e0e44e6395.tar.gz emacs-157bca466be94c4d5ac762e9da9a56e0e44e6395.zip | |
* textmodes/fill.el (fill-paragraph): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/textmodes/fill.el | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cef0687f45c..9eab4663c9b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-04-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * textmodes/fill.el (fill-paragraph): Doc fix. | ||
| 4 | |||
| 1 | 2009-04-07 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-04-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * vc-bzr.el (vc-bzr-log-view-mode): Fix last fix. | 7 | * vc-bzr.el (vc-bzr-log-view-mode): Fix last fix. |
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index e5c3c59ade3..c3ec0b95cb4 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -780,9 +780,10 @@ argument to it), and if it returns non-nil, we simply return its value. | |||
| 780 | 780 | ||
| 781 | If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling. | 781 | If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling. |
| 782 | 782 | ||
| 783 | Interactively (when `region' is non-nil) in Transient Mark mode when | 783 | The REGION argument is non-nil if called interactively; in that |
| 784 | the mark is active, call `fill-region' to fill each of the paragraphs | 784 | case, if Transient Mark mode is enabled and the mark is active, |
| 785 | in the active region." | 785 | call `fill-region' to fill each of the paragraphs in the active |
| 786 | region, instead of just filling the current paragraph." | ||
| 786 | (interactive (progn | 787 | (interactive (progn |
| 787 | (barf-if-buffer-read-only) | 788 | (barf-if-buffer-read-only) |
| 788 | (list (if current-prefix-arg 'full) t))) | 789 | (list (if current-prefix-arg 'full) t))) |