]> git.eshelyaron.com Git - emacs.git/commitdiff
(adaptive-fill-function): Fix :type
authorDave Love <fx@gnu.org>
Wed, 7 Feb 2001 23:31:57 +0000 (23:31 +0000)
committerDave Love <fx@gnu.org>
Wed, 7 Feb 2001 23:31:57 +0000 (23:31 +0000)
lisp/textmodes/fill.el

index 1ddf46e236180e306c0db338ff9d8357de7f5c22..fedfaa91999d835aa2a5d483a7168815cdefa2e5 100644 (file)
@@ -117,9 +117,9 @@ if it would act as a paragraph-starter on the second line."
   :group 'fill)
 
 (defcustom adaptive-fill-function nil
-  "*Function to call to choose a fill prefix for a paragraph.
+  "*Function to call to choose a fill prefix for a paragraph, or nil.
 This function is used when `adaptive-fill-regexp' does not match."
-  :type 'function
+  :type '(choice (const nil) function)
   :group 'fill)
 
 (defvar fill-indent-according-to-mode nil