This change allows declaring a variable both special
and buffer-local like so:
(defvar-local foo)
* lisp/subr.el (defvar-local): Make second argument optional.
* test/lisp/subr-tests.el (subr-test-defvar-local): New test.
* doc/lispref/variables.texi (Creating Buffer-Local): Document above change.
* etc/NEWS:
* lisp/mb-depth.el (minibuffer-depth-overlay):
* lisp/minibuf-eldef.el (minibuf-eldef-initial-input)
(minibuf-eldef-initial-buffer-length)
(minibuf-eldef-showing-default-in-prompt, minibuf-eldef-overlay):
* lisp/misc.el (list-dynamic-libraries--loaded-only-p):
* lisp/simple.el (minibuffer-history-isearch-message-overlay): Use
above new one-argument form of 'defvar-local'.
(cherry picked from commit
ce03bf252ae9bff28a6def163cb3f4fa102e691a)
@code{make-variable-buffer-local} can be the best solution.
@end deffn
-@defmac defvar-local variable value &optional docstring
+@defmac defvar-local variable &optional value docstring
This macro defines @var{variable} as a variable with initial value
@var{value} and @var{docstring}, and marks it as automatically
buffer-local. It is equivalent to calling @code{defvar} followed by
;; An overlay covering the prompt. This is a buffer-local variable in
;; each affected minibuffer.
;;
-(defvar minibuffer-depth-overlay)
-(make-variable-buffer-local 'minibuffer-depth-overlay)
+(defvar-local minibuffer-depth-overlay)
;; This function goes on minibuffer-setup-hook
(defun minibuffer-depth-setup ()
;; A command to list dynamically loaded libraries. This useful in
;; environments where dynamic-library-alist is used, i.e., Windows
-(defvar list-dynamic-libraries--loaded-only-p)
-(make-variable-buffer-local 'list-dynamic-libraries--loaded-only-p)
+(defvar-local list-dynamic-libraries--loaded-only-p)
(defun list-dynamic-libraries--loaded (from)
"Compute the \"Loaded from\" column.
;; isearch minibuffer history
(add-hook 'minibuffer-setup-hook 'minibuffer-history-isearch-setup)
-(defvar minibuffer-history-isearch-message-overlay)
-(make-variable-buffer-local 'minibuffer-history-isearch-message-overlay)
+(defvar-local minibuffer-history-isearch-message-overlay)
(defun minibuffer-history-isearch-setup ()
"Set up a minibuffer for using isearch to search the minibuffer history.
(t `(funcall ,fun ,arg)))))
`(lambda (,x) ,arg)))))
-(defmacro defvar-local (var val &optional docstring)
- "Define VAR as a buffer-local variable with default value VAL.
+(defmacro defvar-local (symbol &rest args)
+ "Define VAR as a buffer-local variable with default value VALUE.
Like `defvar' but additionally marks the variable as being automatically
-buffer-local wherever it is set."
+buffer-local wherever it is set.
+\n(fn symbol &optional value docstring)"
(declare (debug defvar) (doc-string 3) (indent 2))
;; 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))))
+ (let ((value (car-safe args))
+ (docstring (car-safe (cdr-safe args))))
+ (list 'progn
+ (if (zerop (length args))
+ (list 'defvar symbol)
+ (list 'defvar symbol value docstring))
+ (list 'make-variable-buffer-local (list 'quote symbol)))))
(defun buffer-local-boundp (symbol buffer)
"Return non-nil if SYMBOL is bound in BUFFER.
(require 'ert-x)
(eval-when-compile (require 'cl-lib))
+(defvar-local subr-tests--local-var1)
+(defvar-local subr-tests--local-var2 'hello)
+(defvar-local subr-tests--local-var3 nil "Doc.")
+(ert-deftest subr-test-defvar-local ()
+ (should (local-variable-if-set-p 'subr-tests--local-var1))
+ (should (local-variable-if-set-p 'subr-tests--local-var2))
+ (should (eq subr-tests--local-var2 'hello))
+ (should (local-variable-if-set-p 'subr-tests--local-var3))
+ (should (get 'subr-tests--local-var3 'variable-documentation)))
+
(ert-deftest subr-test-apply-partially ()
(should (functionp (apply-partially #'identity)))
(should (functionp (apply-partially #'list 1 2 3)))