Function: erc-echo-notice-in-minibuffer
erc-echo-notice-in-minibuffer is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-echo-notice-in-minibuffer S PARSED BUFFER SENDER)
Documentation
Echo a private notice in the minibuffer.
This function is designed to be added to either
erc-echo-notice-hook or erc-echo-notice-always-hook, and
always returns t.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-echo-notice-in-minibuffer (s _parsed _buffer _sender)
"Echo a private notice in the minibuffer.
This function is designed to be added to either
`erc-echo-notice-hook' or `erc-echo-notice-always-hook', and
always returns t."
(message "%s" (concat "NOTICE: " s))
t)