Function: defgroup-mh
defgroup-mh is a macro defined in mh-e.el.gz.
Signature
(defgroup-mh SYMBOL MEMBERS DOC &rest ARGS)
Documentation
Declare SYMBOL as a customization group containing MEMBERS.
See documentation for defgroup for a description of the arguments
SYMBOL, MEMBERS, 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 defgroup-mh (symbol members doc &rest args)
"Declare SYMBOL as a customization group containing MEMBERS.
See documentation for `defgroup' for a description of the arguments
SYMBOL, MEMBERS, 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))
`(defgroup ,symbol ,members ,doc ,@(mh-strip-package-version args)))