Function: facemenu-set-intangible

facemenu-set-intangible is an interactive and byte-compiled function defined in facemenu.el.gz.

Signature

(facemenu-set-intangible START END)

Documentation

Make the region intangible: disallow moving into it.

This sets the intangible text property; it can be undone with facemenu-remove-special.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/facemenu.el.gz
(defun facemenu-set-intangible (start end)
  "Make the region intangible: disallow moving into it.
This sets the `intangible' text property; it can be undone with
`facemenu-remove-special'."
  (interactive "r")
  (add-text-properties start end '(intangible t)))