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

* evalext.[ch] (scm_m_undefine, undefine): Deprecated.

This commit is contained in:
Dirk Herrmann 2002-11-24 18:21:48 +00:00
parent f2cbc0e567
commit 63dd3413f3
4 changed files with 12 additions and 1 deletions

4
NEWS
View file

@ -204,6 +204,10 @@ without the soft port blocking.
Guile now has breakpoints. For details see the `Debugging Features'
chapter in the reference manual.
** Deprecated: undefine
There is no replacement for undefine.
* Changes to the C interface
** The value 'scm_mask_ints' is no longer writable.

View file

@ -1,3 +1,7 @@
2002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
* evalext.[ch] (scm_m_undefine, undefine): Deprecated.
2002-11-17 Mikael Djurfeldt <mdj@linnaeus>
* debug.c (scm_make_iloc): Added missing "return".

View file

@ -117,6 +117,7 @@ SCM_DEFINE (scm_defined_p, "defined?", 1, 1, 0,
}
#undef FUNC_NAME
#if (SCM_ENABLE_DEPRECATED == 1)
SCM_SYNTAX (s_undefine, "undefine", scm_makacro, scm_m_undefine);
@ -141,6 +142,8 @@ scm_m_undefine (SCM x, SCM env)
#endif
}
#endif
SCM_REGISTER_PROC (s_map_in_order, "map-in-order", 2, 0, 1, scm_map);
void

View file

@ -52,12 +52,12 @@
SCM_API SCM scm_m_generalized_set_x (SCM xorig, SCM env);
SCM_API SCM scm_defined_p (SCM sym, SCM env);
SCM_API SCM scm_m_undefine (SCM x, SCM env);
SCM_API void scm_init_evalext (void);
#if (SCM_ENABLE_DEPRECATED == 1)
#define scm_definedp scm_defined_p
SCM_API SCM scm_m_undefine (SCM x, SCM env);
#endif