Function: defface-mh

defface-mh is a macro defined in mh-e.el.gz.

This macro is obsolete since 29.1; use defface instead.

Signature

(defface-mh FACE SPEC DOC &rest ARGS)

Documentation

Declare FACE as a customizable face that defaults to SPEC.

See documentation for defface for a description of the arguments FACE, SPEC, DOC and ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defmacro defface-mh (face spec doc &rest args)
  "Declare FACE as a customizable face that defaults to SPEC.
See documentation for `defface' for a description of the arguments
FACE, SPEC, DOC and ARGS."
  (declare (obsolete defface "29.1") (doc-string 3) (indent defun))
  `(defface ,face ,spec ,doc ,args))