Function: rcirc-handler-generic
rcirc-handler-generic is a byte-compiled function defined in
rcirc.el.gz.
Signature
(rcirc-handler-generic PROCESS RESPONSE SENDER ARGS TEXT)
Documentation
Generic server response handler.
This handler is called, when no more specific handler could be
found. PROCESS, SENDER and RESPONSE are passed on to
rcirc-print. ARGS are concatenated into a single string and
used as the message body.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-generic (process response sender args _text)
"Generic server response handler.
This handler is called, when no more specific handler could be
found. PROCESS, SENDER and RESPONSE are passed on to
`rcirc-print'. ARGS are concatenated into a single string and
used as the message body."
(rcirc-print process sender response nil
(mapconcat 'identity (cdr args) " ")
(not (member response rcirc-responses-no-activity))))