1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

* evalext.h, evalext.c (scm_definedp, scm_defined_p): Renamed

scm_definedp to scm_defined_p and deprecated scm_definedp.
This commit is contained in:
Dirk Herrmann 2002-10-19 09:07:23 +00:00
parent 100ae50db2
commit 5ec1d2c8e0
4 changed files with 19 additions and 4 deletions

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1998,1999,2000,2001 Free Software Foundation, Inc.
/* Copyright (C) 1998,1999,2000,2001,2002 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -67,13 +67,13 @@ scm_m_generalized_set_x (SCM xorig, SCM env SCM_UNUSED)
scm_misc_error (scm_s_set_x, scm_s_variable, SCM_EOL);
}
SCM_DEFINE (scm_definedp, "defined?", 1, 1, 0,
SCM_DEFINE (scm_defined_p, "defined?", 1, 1, 0,
(SCM sym, SCM env),
"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 defined by the "
"current module.")
#define FUNC_NAME s_scm_definedp
#define FUNC_NAME s_scm_defined_p
{
SCM var;