diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-06-04 05:28:34 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-06-04 05:28:34 +0000 |
commit | d0624e391be5f644a301e31df9ea54386e2cd7e5 (patch) | |
tree | bd5ba87eec78919116d37505e01caa294ce24ef4 /libguile/deprecated.h | |
parent | e90c3a895d37efba2a31995ec85984ec205db974 (diff) | |
download | guile-d0624e391be5f644a301e31df9ea54386e2cd7e5.tar.gz |
* __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
SCM_DEBUG_DEBUGGING_SUPPORT): Renamed macro
SCM_DEBUG_DEBUGGER_SUPPORT to SCM_DEBUG_DEBUGGING_SUPPORT and
generalized it to apply not only to C level functions but also to
scheme level functions.
* debug.c, debug.h, eval.c (make-iloc, scm_make_iloc, iloc?,
scm_iloc_p, dbg-make-iloc, scm_dbg_make_iloc, dbg-iloc?,
scm_dbg_iloc_p): Moved functions scm_make_iloc, scm_iloc_p to
eval.c, made them available under SCM_DEBUG_DEBUGGING_SUPPORT == 1
only and renamed them to scm_dbg_make_iloc, scm_dbg_iloc_p,
respectively.
* deprecated.h, eval.c, eval.h (SCM_ILOC00, SCM_IDINC,
SCM_IDSTMSK): Deprecated. The macro definitions are moved from
eval.h into eval.c and a copy is placed into deprecated.h.
* eval.c, eval.h (SCM_MAKE_ILOC): Removed from eval.h and placed
into eval.c. This definition was not part of the API in any
officially released version of guile and thus does not need to go
through a phase of deprecation.
Diffstat (limited to 'libguile/deprecated.h')
-rw-r--r-- | libguile/deprecated.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libguile/deprecated.h b/libguile/deprecated.h index 5c20c786d..981e9823d 100644 --- a/libguile/deprecated.h +++ b/libguile/deprecated.h @@ -27,6 +27,13 @@ #if (SCM_ENABLE_DEPRECATED == 1) +/* From eval.h: Macros for handling ilocs. These were deprecated in guile + * 1.7.0 on 2003-06-04. */ +#define SCM_ILOC00 SCM_MAKE_ITAG8(0L, scm_tc8_iloc) +#define SCM_IDINC (0x00100000L) +#define SCM_IDSTMSK (-SCM_IDINC) + + /* From eval.h: Error messages of the evaluator. These were deprecated in * guile 1.7.0 on 2003-06-02. */ SCM_API const char scm_s_expression[]; |