On Fri, Dec 2, 2022 at 2:07 PM Eli Zaretskii wrote: > This makes sense to me, so please go ahead and install (assuming that the > multisession tests still all pass after this change). Yes, they pass. Installed in commit e5b0141b0d of 2022-12-02. BTW, I wonder if it would make sense to make bound-and-true-p to check that it gets a symbol: diff --git i/lisp/bindings.el w/lisp/bindings.el index c1ad5f7520..6ee730af58 100644 --- i/lisp/bindings.el +++ w/lisp/bindings.el @@ -671,4 +671,6 @@ bound-and-true-p Note that if `lexical-binding' is in effect, this function isn't meaningful if it refers to a lexically bound variable." + (unless (symbolp var) + (error "Wrong type argument: symbolp, %S" var)) `(and (boundp (quote ,var)) ,var))