Function: erc--remove-text-properties

erc--remove-text-properties is a byte-compiled function defined in erc.el.gz.

Signature

(erc--remove-text-properties STRING)

Documentation

Remove text properties in STRING added by ERC.

Specifically, remove any that aren't members of erc--own-property-names.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--remove-text-properties (string)
  "Remove text properties in STRING added by ERC.
Specifically, remove any that aren't members of
`erc--own-property-names'."
  (remove-list-of-text-properties 0 (length string)
                                  erc--own-property-names string)
  string)