Function: eglot--warn

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

Signature

(eglot--warn FORMAT &rest ARGS)

Documentation

Warning message with FORMAT and ARGS.

Source Code

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