]> git.eshelyaron.com Git - emacs.git/commitdiff
* textmodes/fill.el (fill-paragraph): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 8 Apr 2009 04:02:31 +0000 (04:02 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 8 Apr 2009 04:02:31 +0000 (04:02 +0000)
lisp/ChangeLog
lisp/textmodes/fill.el

index cef0687f45cfca19c5bc88abe745bae7596a2f01..9eab4663c9b015cc189e7e91eb82b8581bd70e59 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * textmodes/fill.el (fill-paragraph): Doc fix.
+
 2009-04-07  Chong Yidong  <cyd@stupidchicken.com>
 
        * vc-bzr.el (vc-bzr-log-view-mode): Fix last fix.
index e5c3c59ade3d47bd9f018b1cba95b586221f0703..c3ec0b95cb41efac15d3ef42924e45259eceeb55 100644 (file)
@@ -780,9 +780,10 @@ argument to it), and if it returns non-nil, we simply return its value.
 
 If `fill-paragraph-function' is nil, return the `fill-prefix' used for filling.
 
-Interactively (when `region' is non-nil) in Transient Mark mode when
-the mark is active, call `fill-region' to fill each of the paragraphs
-in the active region."
+The REGION argument is non-nil if called interactively; in that
+case, if Transient Mark mode is enabled and the mark is active,
+call `fill-region' to fill each of the paragraphs in the active
+region, instead of just filling the current paragraph."
   (interactive (progn
                 (barf-if-buffer-read-only)
                 (list (if current-prefix-arg 'full) t)))