Function: xref--with-connection-local-variables

xref--with-connection-local-variables is a macro defined in xref.el.gz.

Signature

(xref--with-connection-local-variables &rest BODY)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defmacro xref--with-connection-local-variables (&rest body)
  (declare (debug t))
  (if (>= emacs-major-version 27)
      `(with-connection-local-variables ,@body)
    `(progn ,@body)))