summaryrefslogtreecommitdiffstats
path: root/unwind.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-06 00:39:17 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-06 00:39:17 -0800
commit6a63a6b32065f6a5839571b378605f875f9c5240 (patch)
tree3ffb3de049fdcefeed5f7a11cab48602729f95c5 /unwind.h
parent87ef0e20b4e9d8f82d061ddc6993d04a2f6eda9d (diff)
downloadtxr-6a63a6b32065f6a5839571b378605f875f9c5240.tar.gz
txr-6a63a6b32065f6a5839571b378605f875f9c5240.tar.bz2
txr-6a63a6b32065f6a5839571b378605f875f9c5240.zip
* eval.c (op_dwim): Gutted down to just a few lines.
Basically the dwim operator is just a Lisp-1 version of the call operator now. It doesn't have to do anything funny with non-function objects, since they are callable. * lib.c (chr_str, chr_str_set, vecref, vecref_l): Replace inappropriate internal assertions with error exceptions. * unwind.h (numeric_assert, range_bug_unless): Unused macros removed.
Diffstat (limited to 'unwind.h')
-rw-r--r--unwind.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/unwind.h b/unwind.h
index 884f0451..ea92e9b1 100644
--- a/unwind.h
+++ b/unwind.h
@@ -213,16 +213,3 @@ noreturn val type_mismatch(val, ...);
internal_error("assertion " \
#EXPR \
" failed")
-
-#define numeric_assert(EXPR) \
- if (!(EXPR)) \
- uw_throwf(numeric_error_s, \
- lit("assertion " #EXPR \
- " failed"), nao)
-
-#define range_bug_unless(EXPR) \
- if (!(EXPR)) \
- uw_throwf(range_error_s, \
- lit("assertion " #EXPR \
- " failed"), nao)
-