Function: defcustom-mh
defcustom-mh is a macro defined in mh-e.el.gz.
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.
This macro is used by Emacs versions that lack the :package-version
keyword, introduced in Emacs 22.
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.
This macro is used by Emacs versions that lack the :package-version
keyword, introduced in Emacs 22."
(declare (doc-string 3) (indent defun))
`(defcustom ,symbol ,value ,doc ,@(mh-strip-package-version args)))