Function: eglot--message

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

Signature

(eglot--message FORMAT &rest ARGS)

Documentation

Message out with FORMAT with ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--message (format &rest args)
  "Message out with FORMAT with ARGS."
  (message "[eglot] %s" (apply #'format format args)))