summaryrefslogtreecommitdiffstats
path: root/unwind.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-24 11:03:17 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-24 11:03:17 -0800
commit9e929c272579ad369b52c4a14f21895017e69176 (patch)
tree79aec79f90a0c160ab5319b74143f79f00af252e /unwind.h
parent152aefb0086b3482acae19ab78545a4a29ae7c20 (diff)
downloadtxr-9e929c272579ad369b52c4a14f21895017e69176.tar.gz
txr-9e929c272579ad369b52c4a14f21895017e69176.tar.bz2
txr-9e929c272579ad369b52c4a14f21895017e69176.zip
Renaming global variables that denote symbols, such that they
have a _s suffix.
Diffstat (limited to 'unwind.h')
-rw-r--r--unwind.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/unwind.h b/unwind.h
index d04da53c..1504665f 100644
--- a/unwind.h
+++ b/unwind.h
@@ -149,7 +149,7 @@ noreturn val type_mismatch(val, ...);
#define internal_error(STR) \
do { \
extern obj_t *num(cnum); \
- uw_throwf(internal_err, \
+ uw_throwf(internal_error_s, \
lit("~a:~a ~a"), \
lit(__FILE__), \
num(__LINE__), lit(STR), \
@@ -167,13 +167,13 @@ noreturn val type_mismatch(val, ...);
#define numeric_assert(EXPR) \
if (!(EXPR)) \
- uw_throwf(numeric_err, \
+ uw_throwf(numeric_error_s, \
lit("assertion " #EXPR \
"failed"), nao)
#define range_bug_unless(EXPR) \
if (!(EXPR)) \
- uw_throwf(range_err, \
+ uw_throwf(range_error_s, \
lit("assertion " #EXPR \
"failed"), nao)