Variable: facemenu-remove-face-function

facemenu-remove-face-function is a customizable variable defined in facemenu.el.gz.

Value

nil

Documentation

When non-nil, this is a function called to remove faces.

This function is passed the START and END of text to change. May also be t meaning to use facemenu-add-face-function.

Source Code

;; Defined in /usr/src/emacs/lisp/facemenu.el.gz
(defcustom facemenu-remove-face-function nil
  "When non-nil, this is a function called to remove faces.
This function is passed the START and END of text to change.
May also be t meaning to use `facemenu-add-face-function'."
  :type '(choice (const :tag "None" nil)
		 (const :tag "Use add-face" t)
		 function)
  :group 'facemenu)