From 51e8e77d0f21356ebb1651bddc6f5f9291269f98 Mon Sep 17 00:00:00 2001 From: "Stefan-W. Hahn" Date: Sun, 18 Jun 2017 09:09:19 +0200 Subject: [PATCH] * lisp/subr.el (setq-local): Add debug declaration (Bug#27408). Copyright-paperwork-exempt: yes --- lisp/subr.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/subr.el b/lisp/subr.el index ef00286b341..d0c8517c543 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -121,6 +121,7 @@ BODY should be a list of Lisp expressions. (defmacro setq-local (var val) "Set variable VAR to value VAL in current buffer." ;; Can't use backquote here, it's too early in the bootstrap. + (declare (debug (symbolp form))) (list 'set (list 'make-local-variable (list 'quote var)) val)) (defmacro defvar-local (var val &optional docstring) -- 2.39.2