Function: eglot--widening

eglot--widening is a macro defined in eglot.el.gz.

Signature

(eglot--widening &rest BODY)

Documentation

Save excursion and restriction. Widen. Then run BODY.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(cl-defmacro eglot--widening (&rest body)
  "Save excursion and restriction.  Widen.  Then run BODY." (declare (debug t))
  `(save-excursion (save-restriction (widen) ,@body)))