From 42f6459bad0771f66ca014a1b53a92caa6663c22 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Mon, 27 Apr 2026 21:37:14 +0200 Subject: [PATCH] Set indent property for with-connection-local-variables * lisp/files-x.el (with-connection-local-variables): Set indent property. --- lisp/files-x.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/files-x.el b/lisp/files-x.el index 9b7189c9fd8..0d8c1d96a9f 100644 --- a/lisp/files-x.el +++ b/lisp/files-x.el @@ -877,7 +877,7 @@ If APPLICATION is nil, `connection-local-default-application' is used." (defmacro with-connection-local-variables (&rest body) "Apply connection-local variables according to `default-directory'. Execute BODY, and unwind connection-local variables." - (declare (debug t)) + (declare (debug t) (indent 0)) `(with-connection-local-variables-1 (lambda () ,@body))) ;;;###autoload