diff options
| author | Dave Love | 2001-02-07 23:31:57 +0000 |
|---|---|---|
| committer | Dave Love | 2001-02-07 23:31:57 +0000 |
| commit | ef4d4394bf87853635169073120c373fa075a14c (patch) | |
| tree | 92357355bd66976a8c0ded9f639eb1c006f03195 /lisp/textmodes | |
| parent | b4a64de4687a0c0797ba38a7118846d47e89d7a4 (diff) | |
| download | emacs-ef4d4394bf87853635169073120c373fa075a14c.tar.gz emacs-ef4d4394bf87853635169073120c373fa075a14c.zip | |
(adaptive-fill-function): Fix :type
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/fill.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 1ddf46e2361..fedfaa91999 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -117,9 +117,9 @@ 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. | 120 | "*Function to call to choose a fill prefix for a paragraph, or nil. |
| 121 | This function is used when `adaptive-fill-regexp' does not match." | 121 | This function is used when `adaptive-fill-regexp' does not match." |
| 122 | :type 'function | 122 | :type '(choice (const nil) function) |
| 123 | :group 'fill) | 123 | :group 'fill) |
| 124 | 124 | ||
| 125 | (defvar fill-indent-according-to-mode nil | 125 | (defvar fill-indent-according-to-mode nil |