Function: jsonrpc--warn

jsonrpc--warn is a byte-compiled function defined in jsonrpc.el.gz.

Signature

(jsonrpc--warn FORMAT &rest ARGS)

Documentation

Warning message with FORMAT and ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/jsonrpc.el.gz
(defun jsonrpc--warn (format &rest args)
  "Warning message with FORMAT and ARGS."
  (apply #'jsonrpc--message (concat "(warning) " format) args)
  (let ((warning-minimum-level :error))
    (display-warning 'jsonrpc
                     (apply #'format format args)
                     :warning)))