Variable: custom-guess-doc-alist
custom-guess-doc-alist is a customizable variable defined in
cus-edit.el.gz.
Value
(("\\`\\*?Non-nil " boolean))
Documentation
Alist of (MATCH TYPE).
MATCH should be a regexp matching a documentation string, and TYPE should be a widget suitable for editing the value of a variable with that documentation string. The TYPE of the first entry where MATCH matches the name of the symbol will be used.
This is used for guessing the type of variables not declared with customize.
Source Code
;; Defined in /usr/src/emacs/lisp/cus-edit.el.gz
(defcustom custom-guess-doc-alist
'(("\\`\\*?Non-nil " boolean))
"Alist of (MATCH TYPE).
MATCH should be a regexp matching a documentation string, and TYPE
should be a widget suitable for editing the value of a variable with
that documentation string. The TYPE of the first entry where MATCH
matches the name of the symbol will be used.
This is used for guessing the type of variables not declared with
customize."
:type '(repeat (group (regexp :tag "Match") (sexp :tag "Type")))
:group 'custom-buffer)