Function: rcirc-facify

rcirc-facify is a byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-facify STRING FACE)

Documentation

Return a copy of STRING with FACE property added.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-facify (string face)
  "Return a copy of STRING with FACE property added."
  (let ((string (or string "")))
    (rcirc-add-face 0 (length string) face string)
    string))