Function: mh-face-background
mh-face-background is a macro defined in mh-compat.el.gz.
Signature
(mh-face-background FACE &optional FRAME INHERIT)
Documentation
Return the background color name of face, or nil if unspecified.
See documentation for face-background for a description of the
arguments FACE, FRAME, and INHERIT.
This macro is used by Emacs versions that lack an INHERIT argument,
introduced in Emacs 22.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-compat.el.gz
(defmacro mh-face-background (face &optional frame inherit)
"Return the background color name of face, or nil if unspecified.
See documentation for `face-background' for a description of the
arguments FACE, FRAME, and INHERIT.
This macro is used by Emacs versions that lack an INHERIT argument,
introduced in Emacs 22."
(if (< emacs-major-version 22)
`(face-background ,face ,frame)
`(face-background ,face ,frame ,inherit)))