diff options
| author | Juanma Barranquero | 2007-10-18 13:35:16 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-10-18 13:35:16 +0000 |
| commit | efffe5a38f345b0d2f1df8ab1b684affe3d80faf (patch) | |
| tree | bcdc09b50daa83b16d80631d0f16359612f20543 /lisp/textmodes | |
| parent | a80859d4d11603a264341d6376d3fc3ecdeca12a (diff) | |
| download | emacs-efffe5a38f345b0d2f1df8ab1b684affe3d80faf.tar.gz emacs-efffe5a38f345b0d2f1df8ab1b684affe3d80faf.zip | |
(fill-individual-paragraphs): Doc fix.
(adaptive-fill-function): Doc fix. Remove * from docstring.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/fill.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 88a4286aad2..36167f599f4 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -117,8 +117,8 @@ if it would act as a paragraph-starter on the second line." | |||
| 117 | :group 'fill) | 117 | :group 'fill) |
| 118 | 118 | ||
| 119 | (defcustom adaptive-fill-function nil | 119 | (defcustom adaptive-fill-function nil |
| 120 | "*Function to call to choose a fill prefix for a paragraph, or nil. | 120 | "Function to call to choose a fill prefix for a paragraph, or nil. |
| 121 | nil means the function has not determined the fill prefix." | 121 | A nil value means the function has not determined the fill prefix." |
| 122 | :type '(choice (const nil) function) | 122 | :type '(choice (const nil) function) |
| 123 | :group 'fill) | 123 | :group 'fill) |
| 124 | 124 | ||
| @@ -1350,8 +1350,8 @@ These lines are filled together. | |||
| 1350 | When calling from a program, pass the range to fill | 1350 | When calling from a program, pass the range to fill |
| 1351 | as the first two arguments. | 1351 | as the first two arguments. |
| 1352 | 1352 | ||
| 1353 | Optional third and fourth arguments JUSTIFY and MAIL-FLAG: | 1353 | Optional third and fourth arguments JUSTIFY and CITATION-REGEXP: |
| 1354 | JUSTIFY to justify paragraphs (prefix arg), | 1354 | JUSTIFY to justify paragraphs (prefix arg). |
| 1355 | When filling a mail message, pass a regexp for CITATION-REGEXP | 1355 | When filling a mail message, pass a regexp for CITATION-REGEXP |
| 1356 | which will match the prefix of a line which is a citation marker | 1356 | which will match the prefix of a line which is a citation marker |
| 1357 | plus whitespace, but no other kind of prefix. | 1357 | plus whitespace, but no other kind of prefix. |