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