]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify the default-boundp doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 9 Dec 2020 13:18:28 +0000 (14:18 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 9 Dec 2020 13:52:53 +0000 (14:52 +0100)
* src/data.c (Fdefault_boundp): Doc string clarification (bug#44141).

src/data.c

index 384c25922046ba0d41d55c47f4408ca85296bf27..76bacf7e1311f1a0285271d837cf7e4c43e9a2e7 100644 (file)
@@ -1639,8 +1639,9 @@ default_value (Lisp_Object symbol)
 
 DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0,
        doc: /* Return t if SYMBOL has a non-void default value.
-This is the value that is seen in buffers that do not have their own values
-for this variable.  */)
+A variable may have a buffer-local or a `let'-bound local value.  This
+function says whether the variable has a non-void value outside of the
+current context.  Also see `default-value'.  */)
   (Lisp_Object symbol)
 {
   register Lisp_Object value;