Function: erc--insert-admin-message

erc--insert-admin-message is a byte-compiled function defined in erc.el.gz.

Signature

(erc--insert-admin-message MSG &rest ARGS)

Documentation

Print MSG with ARGS as a local notice.

Inhibit all stamps and buttonizing.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--insert-admin-message (msg &rest args)
  "Print MSG with ARGS as a local notice.
Inhibit all stamps and buttonizing."
  (let ((erc--msg-prop-overrides `((erc--skip . (stamp track button))
                                   ,@erc--msg-prop-overrides)))
    (apply #'erc-display-message nil '(notice information)
           (current-buffer) msg args)))