Function: rcirc-handler-TAGMSG

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

Signature

(rcirc-handler-TAGMSG PROCESS SENDER ARGS TEXT)

Documentation

Handle a empty tag message from SENDER.

PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-TAGMSG (process sender _args _text)
  "Handle a empty tag message from SENDER.
PROCESS is the process object for the current connection."
  (dolist (tag rcirc-message-tags)
    (when-let ((handler (intern-soft (concat "rcirc-tag-handler-" (car tag))))
               ((fboundp handler)))
      (funcall handler process sender (cdr tag)))))