aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-04-08 04:02:31 +0000
committerChong Yidong2009-04-08 04:02:31 +0000
commit157bca466be94c4d5ac762e9da9a56e0e44e6395 (patch)
treef3f53914410613111f1b28e41677f1ff040a95d2
parent6638d82aed325b79578bc6091bb641d4c660dfe6 (diff)
downloademacs-157bca466be94c4d5ac762e9da9a56e0e44e6395.tar.gz
emacs-157bca466be94c4d5ac762e9da9a56e0e44e6395.zip
* textmodes/fill.el (fill-paragraph): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/fill.el7
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 @@
12009-04-08 Chong Yidong <cyd@stupidchicken.com>
2
3 * textmodes/fill.el (fill-paragraph): Doc fix.
4
12009-04-07 Chong Yidong <cyd@stupidchicken.com> 52009-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
781If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling. 781If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling.
782 782
783Interactively (when `region' is non-nil) in Transient Mark mode when 783The REGION argument is non-nil if called interactively; in that
784the mark is active, call `fill-region' to fill each of the paragraphs 784case, if Transient Mark mode is enabled and the mark is active,
785in the active region." 785call `fill-region' to fill each of the paragraphs in the active
786region, 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)))