Function: facemenu-remove-face-props
facemenu-remove-face-props is an interactive and byte-compiled
function defined in facemenu.el.gz.
Signature
(facemenu-remove-face-props START END)
Documentation
Remove face and mouse-face text properties.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/facemenu.el.gz
(defun facemenu-remove-face-props (start end)
"Remove `face' and `mouse-face' text properties."
(interactive "*r") ; error if buffer is read-only despite the next line.
(let ((inhibit-read-only t))
(remove-text-properties
start end '(face nil mouse-face nil))))