Function: defcustom-mh
defcustom-mh is a macro defined in mh-e.el.gz.
This macro is obsolete since 29.1; use defcustom instead.
Signature
(defcustom-mh SYMBOL VALUE DOC &rest ARGS)
Documentation
Declare SYMBOL as a customizable variable that defaults to VALUE.
See documentation for defcustom for a description of the arguments
SYMBOL, VALUE, DOC and ARGS.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defmacro defcustom-mh (symbol value doc &rest args)
"Declare SYMBOL as a customizable variable that defaults to VALUE.
See documentation for `defcustom' for a description of the arguments
SYMBOL, VALUE, DOC and ARGS."
(declare (obsolete defcustom "29.1") (doc-string 3) (indent defun))
`(defcustom ,symbol ,value ,doc ,args))