Function: erc-remove-text-properties-region

erc-remove-text-properties-region is an interactive and byte-compiled function defined in erc.el.gz.

Signature

(erc-remove-text-properties-region START END &optional OBJECT)

Documentation

Clears the region (START,END) in OBJECT from all colors, etc.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-remove-text-properties-region (start end &optional object)
  "Clears the region (START,END) in OBJECT from all colors, etc."
  (interactive "r")
  (save-excursion
    (let ((inhibit-read-only t))
      (set-text-properties start end nil object))))