Function: rcirc-handler-WALLOPS

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

Signature

(rcirc-handler-WALLOPS PROCESS SENDER ARGS TEXT)

Documentation

Handle WALLOPS message from SENDER.

ARGS should have the form (MESSAGE). PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-WALLOPS (process sender args _text)
  "Handle WALLOPS message from SENDER.
ARGS should have the form (MESSAGE).
PROCESS is the process object for the current
connection."
  (rcirc-print process sender "WALLOPS" sender (car args) t))