Function: erc-make-notice
erc-make-notice is a byte-compiled function defined in erc.el.gz.
Signature
(erc-make-notice MESSAGE)
Documentation
Notify the user of MESSAGE.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-make-notice (message)
"Notify the user of MESSAGE."
(when erc-minibuffer-notice
(message "%s" message))
(erc-highlight-notice (concat erc-notice-prefix message)))