]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve bound-and-true-p doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 19 Jun 2021 13:21:18 +0000 (15:21 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 19 Jun 2021 13:21:18 +0000 (15:21 +0200)
* lisp/bindings.el (bound-and-true-p): Improve doc string (bug#49116).

lisp/bindings.el

index 6eac528eb61b90906c7fa7999bb04268f7c2fd53..4e5497cc79a11b730e60fcfb5f09c01fcd406f76 100644 (file)
@@ -610,7 +610,9 @@ Switch to the most recently selected buffer other than the current one."
     (previous-buffer)))
 
 (defmacro bound-and-true-p (var)
-  "Return the value of symbol VAR if it is bound, else nil."
+  "Return the value of symbol VAR if it is bound, else nil.
+Note that if `lexical-binding' is in effect, this refers to the
+global value outside of any lexical scope."
   `(and (boundp (quote ,var)) ,var))
 
 ;; Use mode-line-mode-menu for local minor-modes only.