Function: erc--lwarn

erc--lwarn is a byte-compiled function defined in erc.el.gz.

Signature

(erc--lwarn TYPE LEVEL FORMAT-STRING &rest ARGS)

Documentation

Issue a warning of TYPE and LEVEL with FORMAT-STRING and ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--lwarn (type level format-string &rest args)
  "Issue a warning of TYPE and LEVEL with FORMAT-STRING and ARGS."
  (let ((message (substitute-command-keys
                  (apply #'format-message format-string args))))
    (display-warning type message level erc--warnings-buffer-name)))