Function: rcirc-get-tag
rcirc-get-tag is a byte-compiled function defined in rcirc.el.gz.
Signature
(rcirc-get-tag KEY &optional DEFAULT)
Documentation
Return tag value for KEY or DEFAULT.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defsubst rcirc-get-tag (key &optional default)
"Return tag value for KEY or DEFAULT."
(alist-get key rcirc-message-tags default nil #'string=))