]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/textmodes/fill.el (adaptive-fill-function): Change default
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 23 Dec 2017 03:34:15 +0000 (22:34 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 23 Dec 2017 03:34:15 +0000 (22:34 -0500)
Use 'ignore' rather than nil since they behave identically, except that
'ignore' interacts correctly with add/remove-function.

lisp/textmodes/fill.el

index 96023265b039e85e10c99e6cdb45869f8831667e..d218db0fac1846d98848871419f2cae0912447ed 100644 (file)
@@ -128,10 +128,11 @@ if it would act as a paragraph-starter on the second line."
   :type 'regexp
   :group 'fill)
 
-(defcustom adaptive-fill-function nil
-  "Function to call to choose a fill prefix for a paragraph, or nil.
-A nil value means the function has not determined the fill prefix."
-  :type '(choice (const nil) function)
+(defcustom adaptive-fill-function #'ignore
+  "Function to call to choose a fill prefix for a paragraph.
+A nil return value means the function has not determined the fill prefix."
+  :version "27.1"
+  :type 'function
   :group 'fill)
 
 (defvar fill-indent-according-to-mode nil ;Screws up CC-mode's filling tricks.