Function: erc-cmd-NOTICE
erc-cmd-NOTICE is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-NOTICE CHANNEL-OR-USER &rest MESSAGE)
Documentation
Send a notice to the channel or user given as the first word.
The rest is the message to send.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-NOTICE (channel-or-user &rest message)
"Send a notice to the channel or user given as the first word.
The rest is the message to send."
(erc-message "NOTICE" (concat channel-or-user " "
(mapconcat #'identity message " "))))