Variable: mh-inherit-face-flag

mh-inherit-face-flag is a variable defined in mh-e.el.gz.

Value

(:inherit
 (repeat :tag "Inherit" :help-echo "List of faces to inherit attributes from."
	 (face :Tag "Face" default))
 (lambda
   (real-value)
   (cond
    ((or
      (null real-value)
      (eq real-value 'unspecified))
     nil)
    ((symbolp real-value)
     (list real-value))
    (t real-value)))
 (lambda
   (cus-value)
   (if
       (and
	(consp cus-value)
	(null
	 (cdr cus-value)))
       (car cus-value)
     cus-value)))

Documentation

Non-nil means that the defface :inherit keyword is available.

The :inherit keyword is available on all supported versions of GNU Emacs and XEmacs from at least 21.5.23 on.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defvar mh-inherit-face-flag (assq :inherit custom-face-attributes)
  "Non-nil means that the `defface' :inherit keyword is available.
The :inherit keyword is available on all supported versions of
GNU Emacs and XEmacs from at least 21.5.23 on.")