Function: facemenu-remove-special

facemenu-remove-special is an interactive and byte-compiled function defined in facemenu.el.gz.

Signature

(facemenu-remove-special START END)

Documentation

Remove all the "special" text properties from the region.

These special properties include invisible, intangible and read-only.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/facemenu.el.gz
(defun facemenu-remove-special (start end)
  "Remove all the \"special\" text properties from the region.
These special properties include `invisible', `intangible' and `read-only'."
  (interactive "*r") ; error if buffer is read-only despite the next line.
  (let ((inhibit-read-only t))
    (remove-text-properties
     start end '(invisible nil intangible nil read-only nil charset nil))))