Function: erc-string-invisible-p
erc-string-invisible-p is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-string-invisible-p STRING)
Documentation
Check whether STRING is invisible or not.
I.e. any char in it has the invisible property set.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Display interface
(defun erc-string-invisible-p (string)
"Check whether STRING is invisible or not.
I.e. any char in it has the `invisible' property set."
(text-property-any 0 (length string) 'invisible t string))