]> git.eshelyaron.com Git - emacs.git/commit
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)
commit411775805e0ae10038c3e24ff9271f06f1f961ac
tree20f344c75efefc1ca6927d479a669e70da843699
parenta0583bd6534ebb3a6b5567ffc698fdd139f36f97
Make second arg to defvar-local optional

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