bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#66117: 30.0.50; `find-buffer-visiting' is slow when opening large nu


From: Stefan Monnier
Subject: bug#66117: 30.0.50; `find-buffer-visiting' is slow when opening large number of buffers
Date: Wed, 20 Dec 2023 15:33:26 -0500
User-agent: Gnus/5.13 (Gnus v5.13)

> If yes, I will need help with various edge cases, because I am not
> really sure about them. For example, I have no clue if below is expected
>
> (defvar test/foo 'value)
> (default-boundp 'test/foo)
> (default-value 'test/foo) ;; -> value

Yup.

> (let ((test/foo t))
>   (default-value 'test/foo)) ;; -> t ???

Yup.

> (defvar-local test/foo2 'value)
> (default-boundp 'test/foo2) ;; -> t

Yup.

> (default-value 'test/foo2) ;; -> value

Yup.

> (let ((test/foo2 t))
>   (default-value 'test/foo2)) ;; -> t ???

Yup.

> (setq-default test/foo2 'value2)
> (default-boundp 'test/foo2) ;; -> t

Yup.

> (default-value 'test/foo2) ;; -> value2

Yup.

> (let ((test/foo2 t))
>   (default-value 'test/foo2)) ;; -> t ???

Yup.


        Stefan






reply via email to

[Prev in Thread] Current Thread [Next in Thread]