diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-07-06 10:59:25 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-07-06 10:59:25 +0000 |
commit | 7888309be8638cb5b75db163383a3d977bd9769d (patch) | |
tree | 1dd35eb478f799c14dfe75756bb870a56ce1ba3f /libguile/debug.h | |
parent | 9c293a3d2f20f783cc59d749f4d6bcd09fbb0cd5 (diff) |
* deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
SCM_NEGATE_BOOL, SCM_BOOLP): Deprecated by moving into "deprecated.h".
Replaced all uses with scm_is_false, scm_is_true, scm_from_bool, and
scm_is_bool, respectively.
Diffstat (limited to 'libguile/debug.h')
-rw-r--r-- | libguile/debug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/debug.h b/libguile/debug.h index 426215cc6..81e1fb3f1 100644 --- a/libguile/debug.h +++ b/libguile/debug.h @@ -68,11 +68,11 @@ SCM_API int scm_check_exit_p; #define SCM_RESET_DEBUG_MODE \ do {\ scm_check_entry_p = (SCM_ENTER_FRAME_P || SCM_BREAKPOINTS_P)\ - && !SCM_FALSEP (SCM_ENTER_FRAME_HDLR);\ + && scm_is_true (SCM_ENTER_FRAME_HDLR);\ scm_check_apply_p = (SCM_APPLY_FRAME_P || SCM_TRACE_P)\ - && !SCM_FALSEP (SCM_APPLY_FRAME_HDLR);\ + && scm_is_true (SCM_APPLY_FRAME_HDLR);\ scm_check_exit_p = (SCM_EXIT_FRAME_P || SCM_TRACE_P)\ - && !SCM_FALSEP (SCM_EXIT_FRAME_HDLR);\ + && scm_is_true (SCM_EXIT_FRAME_HDLR);\ scm_debug_mode_p = SCM_DEVAL_P\ || scm_check_entry_p || scm_check_apply_p || scm_check_exit_p;\ } while (0) |