Function: erc-restore-text-properties

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

Signature

(erc-restore-text-properties)

Documentation

Restore the property erc-parsed for the region.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-restore-text-properties ()
  "Restore the property `erc-parsed' for the region."
  (let ((parsed-posn (erc-find-parsed-property)))
    (put-text-property
     (point-min) (point-max)
     'erc-parsed (when parsed-posn (erc-get-parsed-vector parsed-posn)))))