1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

(scm_definedp): Fix docstring.

This commit is contained in:
Marius Vollmer 2001-05-05 19:03:42 +00:00
parent 3777a9d3b6
commit 67dc6a4ea2

View file

@ -71,7 +71,10 @@ scm_m_generalized_set_x (SCM xorig, SCM env)
SCM_DEFINE (scm_definedp, "defined?", 1, 1, 0,
(SCM sym, SCM env),
"Return @code{#t} if @var{sym} is defined in the top-level environment.")
"Return @code{#t} if @var{sym} is defined in the lexical "
"environment@var{env}. When @var{env} is not specified, "
"look in the top-level environment as as defined by the "
"current module.")
#define FUNC_NAME s_scm_definedp
{
SCM vcell;