+2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * subr.el (defvar-local): Add debug spec and doc-string position.
+
2012-05-08 Glenn Morris <rgm@gnu.org>
* lisp/language/burmese.el, language/cham.el, language/czech.el:
"Define VAR as a buffer-local variable with default value VAL.
Like `defvar' but additionally marks the variable as being automatically
buffer-local wherever it is set."
+ (declare (debug defvar) (doc-string 3))
;; Can't use backquote here, it's too early in the bootstrap.
(list 'progn (list 'defvar var val docstring)
(list 'make-variable-buffer-local (list 'quote var))))