From: Glenn Morris Date: Tue, 27 Nov 2012 20:45:30 +0000 (-0500) Subject: * src/data.c (Fboundp): Doc fix re lexical-binding. X-Git-Tag: emacs-24.2.91~71 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9de9f0c05f835c7091086d14d49e16f9927e663;p=emacs.git * src/data.c (Fboundp): Doc fix re lexical-binding. --- diff --git a/src/ChangeLog b/src/ChangeLog index dfdf41eafdb..a1d09e683c3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,6 @@ 2012-11-27 Glenn Morris - * data.c (Fsymbol_value): Doc fix re lexical-binding. + * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding. 2012-11-26 Eli Zaretskii diff --git a/src/data.c b/src/data.c index ff2c0d94b9d..658b88e13b1 100644 --- a/src/data.c +++ b/src/data.c @@ -505,7 +505,9 @@ DEFUN ("setcdr", Fsetcdr, Ssetcdr, 2, 2, 0, /* Extract and set components of symbols. */ DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, - doc: /* Return t if SYMBOL's value is not void. */) + doc: /* Return t if SYMBOL's value is not void. +Note that if `lexical-binding' is in effect, this refers to the +global value outside of any lexical scope. */) (register Lisp_Object symbol) { Lisp_Object valcontents;