Function: rcirc-handler-ERROR

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

Signature

(rcirc-handler-ERROR PROCESS SENDER ARGS TEXT)

Documentation

Print a error message.

SENDER and ARGS (in concatenated form) are passed on to rcirc-print. PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-ERROR (process sender args _text)
  "Print a error message.
SENDER and ARGS (in concatenated form) are passed on to
`rcirc-print'.  PROCESS is the process object for the current
connection."
  (rcirc-print process sender "ERROR" nil (mapconcat 'identity args " ")))