From 4b9d571a558fe75df67045ce5dd6d964d4956295 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Wed, 9 Apr 2025 20:24:42 +0300 Subject: [PATCH] * lisp/subr.el (defvar-local): Change 'indent' to 'defun' (bug#77256). --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/subr.el b/lisp/subr.el index be847aab28a..164ed2a6f63 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -197,7 +197,7 @@ pair. Like `defvar' but additionally marks the variable as being automatically buffer-local wherever it is set. \n(fn SYMBOL &optional VALUE DOCSTRING)" - (declare (debug defvar) (doc-string 3) (indent 2)) + (declare (debug defvar) (doc-string 3) (indent defun)) ;; Can't use backquote here, it's too early in the bootstrap. (let ((value (car-safe args)) (docstring (car-safe (cdr-safe args))))