diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-28 17:45:50 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-28 17:45:50 -0500 |
commit | c51943d71d99b7196957292e2cf9a9c554ec4d21 (patch) | |
tree | a5a98dd5e1081a2faa8eddb376ac74214ba206f8 /lisp/custom.el | |
parent | af5cff969e2a07e85735c05049aa8e1a475eac5e (diff) | |
download | emacs-c51943d71d99b7196957292e2cf9a9c554ec4d21.tar.gz emacs-c51943d71d99b7196957292e2cf9a9c554ec4d21.tar.bz2 emacs-c51943d71d99b7196957292e2cf9a9c554ec4d21.zip |
* lisp/custom.el (defcustom): Doc fix.
* doc/lispref/customize.texi (Variable Definitions):
Defcustom should always have a type.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index f84aed2b135..550ba440c0f 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -224,6 +224,7 @@ The remaining arguments to `defcustom' should have the form The following keywords are meaningful: :type VALUE should be a widget type for editing the symbol's value. + Every `defcustom' should specify a value for this keyword. :options VALUE should be a list of valid members of the widget type. :initialize VALUE should be a function used to initialize the |