From ef4d4394bf87853635169073120c373fa075a14c Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 7 Feb 2001 23:31:57 +0000 Subject: [PATCH] (adaptive-fill-function): Fix :type --- lisp/textmodes/fill.el | 4 ++-- 1 file 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." :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 -- 2.11.4.GIT