From 345acf28eee423ae50f983a60d85880ff77ea851 Mon Sep 17 00:00:00 2001 From: "Stefan-W. Hahn" Date: Sat, 17 Jun 2017 15:34:47 +0200 Subject: Added missing debug declaration * lisp/subr.el (setq-local): Added debug declaration. Copyright-paperwork-exempt: yes --- lisp/subr.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/subr.el b/lisp/subr.el index ef00286..2e1a87b 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -121,6 +121,7 @@ lambda (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.9.0.137.gcf4c2cf