From 9e929c272579ad369b52c4a14f21895017e69176 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 24 Nov 2009 11:03:17 -0800 Subject: Renaming global variables that denote symbols, such that they have a _s suffix. --- unwind.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'unwind.h') 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) -- cgit v1.2.3