emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Doc fix for fill-nonuniform-paragraphs in lisp/textmodes/fill.el


From: Ben North
Subject: Doc fix for fill-nonuniform-paragraphs in lisp/textmodes/fill.el
Date: Tue, 9 Aug 2005 14:09:26 +0100
User-agent: Internet Messaging Program (IMP) 3.2.2

Tiny fix: The argument names in the docstring don't match their names in
the definition.


--- REV-1.180--fill.el  2005-08-09 14:03:41.775475100 +0100
+++ NEW--fill.el        2005-08-09 14:04:13.271077600 +0100
@@ -1275,22 +1275,22 @@
 
 
 (defun fill-nonuniform-paragraphs (min max &optional justifyp citation-regexp)
   "Fill paragraphs within the region, allowing varying indentation within
each.
 This command divides the region into \"paragraphs\",
 only at paragraph-separator lines, then fills each paragraph
 using as the fill prefix the smallest indentation of any line
 in the paragraph.
 
 When calling from a program, pass range to fill as first two arguments.
 
-Optional third and fourth arguments JUSTIFY and MAIL-FLAG:
-JUSTIFY to justify paragraphs (prefix arg),
+Optional third and fourth arguments JUSTIFYP and CITATION-REGEXP:
+JUSTIFYP to justify paragraphs (prefix arg),
 When filling a mail message, pass a regexp for CITATION-REGEXP
 which will match the prefix of a line which is a citation marker
 plus whitespace, but no other kind of prefix.
 Also, if CITATION-REGEXP is non-nil, don't fill header lines."
   (interactive (progn
                 (barf-if-buffer-read-only)
                 (list (region-beginning) (region-end)
                       (if current-prefix-arg 'full))))
   (let ((fill-individual-varying-indent t))
     (fill-individual-paragraphs min max justifyp citation-regexp)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]