diff options
| author | Glenn Morris | 2012-11-27 15:45:30 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-11-27 15:45:30 -0500 |
| commit | a9de9f0c05f835c7091086d14d49e16f9927e663 (patch) | |
| tree | 20aa6fba0095eedef9ba748450a8c53a34de25c6 /src/data.c | |
| parent | 14d2734642c572b6d0a831efc31223bf68ffc269 (diff) | |
| download | emacs-a9de9f0c05f835c7091086d14d49e16f9927e663.tar.gz emacs-a9de9f0c05f835c7091086d14d49e16f9927e663.zip | |
* src/data.c (Fboundp): Doc fix re lexical-binding.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 3 insertions, 1 deletions
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, | |||
| 505 | /* Extract and set components of symbols. */ | 505 | /* Extract and set components of symbols. */ |
| 506 | 506 | ||
| 507 | DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, | 507 | DEFUN ("boundp", Fboundp, Sboundp, 1, 1, 0, |
| 508 | doc: /* Return t if SYMBOL's value is not void. */) | 508 | doc: /* Return t if SYMBOL's value is not void. |
| 509 | Note that if `lexical-binding' is in effect, this refers to the | ||
| 510 | global value outside of any lexical scope. */) | ||
| 509 | (register Lisp_Object symbol) | 511 | (register Lisp_Object symbol) |
| 510 | { | 512 | { |
| 511 | Lisp_Object valcontents; | 513 | Lisp_Object valcontents; |