Function: erc-nicks--reject-uninterned-faces

erc-nicks--reject-uninterned-faces is a byte-compiled function defined in erc-nicks.el.gz.

Signature

(erc-nicks--reject-uninterned-faces CANDIDATE)

Documentation

Remove own faces from CANDIDATE if it's a combination of faces.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-nicks.el.gz
(defun erc-nicks--reject-uninterned-faces (candidate)
  "Remove own faces from CANDIDATE if it's a combination of faces."
  (while-let ((next (car-safe candidate))
              ((facep next))
              ((not (intern-soft next))))
    (setq candidate (cdr candidate)))
  (erc--solo candidate))