aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2007-04-27 13:29:20 +0000
committerEli Zaretskii2007-04-27 13:29:20 +0000
commit96bbf28bb898cc3acc7eb175e6f6cb8f53073cd7 (patch)
tree110b1bcdffd43bde754d3b135341d4677f14abaa
parentf1f6b7692d3e9d8cde9e28719e0d9abc13e0c5bf (diff)
downloademacs-96bbf28bb898cc3acc7eb175e6f6cb8f53073cd7.tar.gz
emacs-96bbf28bb898cc3acc7eb175e6f6cb8f53073cd7.zip
(fill-paragraph): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/fill.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 671945ec5b3..746188ceeca 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-04-27 Eli Zaretskii <eliz@gnu.org>
2
3 * textmodes/fill.el (fill-paragraph): Doc fix.
4
12007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu> 52007-04-26 Luc Teirlinck <teirllm@dms.auburn.edu>
2 6
3 * locate.el (locate-in-alternate-database): Doc fix. 7 * locate.el (locate-in-alternate-database): Doc fix.
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
753If ARG is non-nil (interactively, with prefix argument), justify as well.
752If `sentence-end-double-space' is non-nil, then period followed by one 754If `sentence-end-double-space' is non-nil, then period followed by one
753space does not end a sentence, so don't break a line there. 755space does not end a sentence, so don't break a line there.
754the variable `fill-column' controls the width for filling. 756the variable `fill-column' controls the width for filling.