diff options
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/textmodes/fill.el | 8 |
2 files changed, 13 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0054a7d08ca..d76b474164e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-10-18 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * textmodes/fill.el (fill-individual-paragraphs): Doc fix. | ||
| 4 | (adaptive-fill-function): Doc fix. Remove * from docstring. | ||
| 5 | |||
| 1 | 2007-10-18 Glenn Morris <rgm@gnu.org> | 6 | 2007-10-18 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix. | 8 | * ibuf-ext.el (ibuffer-saved-filter-groups): Doc fix. |
| @@ -11,8 +16,8 @@ | |||
| 11 | 16 | ||
| 12 | * longlines.el (longlines-wrap-follows-window-size): Integer value | 17 | * longlines.el (longlines-wrap-follows-window-size): Integer value |
| 13 | specifies wrapping margin. | 18 | specifies wrapping margin. |
| 14 | (longlines-mode, longlines-window-change-function): Set | 19 | (longlines-mode, longlines-window-change-function): |
| 15 | window-specific wrapping margin based on the above. | 20 | Set window-specific wrapping margin based on the above. |
| 16 | 21 | ||
| 17 | 2007-10-17 John Wiegley <johnw@newartisans.com> | 22 | 2007-10-17 John Wiegley <johnw@newartisans.com> |
| 18 | 23 | ||
| @@ -20,8 +25,8 @@ | |||
| 20 | 25 | ||
| 21 | 2007-10-17 Glenn Morris <rgm@gnu.org> | 26 | 2007-10-17 Glenn Morris <rgm@gnu.org> |
| 22 | 27 | ||
| 23 | * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Tweak | 28 | * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): |
| 24 | regexp to avoid stack overflow. | 29 | Tweak regexp to avoid stack overflow. |
| 25 | 30 | ||
| 26 | 2007-10-16 Juanma Barranquero <lekktu@gmail.com> | 31 | 2007-10-16 Juanma Barranquero <lekktu@gmail.com> |
| 27 | 32 | ||
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. |