diff options
author | Andy Wingo <wingo@pobox.com> | 2011-05-15 13:29:45 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-05-15 15:34:16 +0200 |
commit | cb5b7677a2df77cecd9cd8a7a19b5d4433d908b0 (patch) | |
tree | 9413c23d253271b772d8303fedae2a9f12fd66de /libguile | |
parent | 6dae2c589b3a6e033cb2109011100d832191a51f (diff) | |
download | guile-cb5b7677a2df77cecd9cd8a7a19b5d4433d908b0.tar.gz |
remove SCM_ASRTGO
* libguile/__scm.h (SCM_ASRTGO): Remove unused macro.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/__scm.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 0feae02b8..eb6d60372 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -406,7 +406,6 @@ typedef long SCM_STACKITEM; #ifdef SCM_RECKLESS #define SCM_ASSERT(_cond, _arg, _pos, _subr) #define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) -#define SCM_ASRTGO(_cond, _label) #else #define SCM_ASSERT(_cond, _arg, _pos, _subr) \ do { if (SCM_UNLIKELY (!(_cond))) \ @@ -414,9 +413,6 @@ typedef long SCM_STACKITEM; #define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) \ do { if (SCM_UNLIKELY (!(_cond))) \ scm_wrong_type_arg_msg(_subr, _pos, _arg, _msg); } while (0) -#define SCM_ASRTGO(_cond, _label) \ - do { if (SCM_UNLIKELY (!(_cond))) \ - goto _label; } while (0) #endif /* |