Function: eglot--error

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

Signature

(eglot--error FORMAT &rest ARGS)

Documentation

Error out with FORMAT with ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
;;; Helpers (move these to API?)
;;;
(defun eglot--error (format &rest args)
  "Error out with FORMAT with ARGS."
  (error "[eglot] %s" (apply #'format format args)))