]> git.eshelyaron.com Git - emacs.git/commitdiff
Make second arg to defvar-local optional
authorStefan Kangas <stefankangas@gmail.com>
Sat, 8 Mar 2025 17:24:26 +0000 (18:24 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:52:07 +0000 (19:52 +0100)
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)

doc/lispref/variables.texi
lisp/mb-depth.el
lisp/misc.el
lisp/simple.el
lisp/subr.el
test/lisp/subr-tests.el

index 6f2dbd6b3ec1d06d0aa8bf2c84b7834e499ddda0..daece2d3a79eb2d2a19dfc3ef73d4aa3052a24e7 100644 (file)
@@ -1649,7 +1649,7 @@ on having separate values in separate buffers, then using
 @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
index 82b1583bd113602a410e62e54adc1f496807bbb3..87a386207e76da73a91582a6709b3a2d3ffc5910 100644 (file)
@@ -49,8 +49,7 @@ the `minibuffer-depth-indicator' face."
 ;; 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 ()
index c8fb37cef6a7304cacc215aa632dd3badcdaaf7d..7008940288fc034e03bd25015f066b6dda49f6b8 100644 (file)
@@ -261,8 +261,7 @@ variation of `C-x M-c M-butterfly' from url `https://xkcd.com/378/'."
 ;; 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.
index 6dc693ef2467f93c7c7ee903d19ede27cecaa02a..7ecb0f708592a126431fb70ca089d36fefe28c40 100644 (file)
@@ -3101,8 +3101,7 @@ by the new completion."
 ;; 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.
index 89066b4b2c2c96bafa819f7b847ea1702d8ddd78..a9474861c13a857b0eb8899ea5b09b049faafec8 100644 (file)
@@ -226,14 +226,20 @@ If FUNS is empty, expand to `identity'."
                (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.
index c2f64867d90502b8ed80665ed594a8bd6b7ce2a4..86538ed14319076c6457de5fb863907bda7b8a46 100644 (file)
 (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)))