Function: eglot--format

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

Signature

(eglot--format FORMAT &rest ARGS)

Documentation

Like `format`, but substitutes quotes.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
;;; Helpers (move these to API?)
;;;
(defun eglot--format (format &rest args)
  "Like `format`, but substitutes quotes."
  (apply #'format (if (functionp 'substitute-quotes)
                      (substitute-quotes format)
                    format)
         args))