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:
parent
f2cbc0e567
commit
63dd3413f3
4 changed files with 12 additions and 1 deletions
4
NEWS
4
NEWS
|
@ -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.
|
||||
|
|
|
@ -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".
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue