summaryrefslogtreecommitdiffstats
path: root/unwind.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-12 22:48:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-12 22:48:15 -0800
commit673d5f3b84d276fb29233d6a3f485ccfe330be13 (patch)
treeb1447ce861394a8b5873589ecb03659f2c5506fe /unwind.h
parent8367c03ef07473cff4f1b6f0645e1ce9ae17c94c (diff)
downloadtxr-673d5f3b84d276fb29233d6a3f485ccfe330be13.tar.gz
txr-673d5f3b84d276fb29233d6a3f485ccfe330be13.tar.bz2
txr-673d5f3b84d276fb29233d6a3f485ccfe330be13.zip
Continuing wchar_t conversion. Making sure all stdio calls
use wide character functions so that there is no illicit mixing. (But the goal is to replace this usage with txr streams).
Diffstat (limited to 'unwind.h')
-rw-r--r--unwind.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/unwind.h b/unwind.h
index 8d8cf5ae..6f7683a8 100644
--- a/unwind.h
+++ b/unwind.h
@@ -81,8 +81,8 @@ void uw_push_catch(uw_frame_t *, obj_t *matches);
noreturn obj_t *uw_throw(obj_t *sym, obj_t *exception);
noreturn obj_t *uw_throwf(obj_t *sym, const wchar_t *fmt, ...);
noreturn obj_t *uw_errorf(const wchar_t *fmt, ...);
-noreturn obj_t *uw_throwcf(obj_t *sym, const char *fmt, ...);
-noreturn obj_t *uw_errorcf(const char *fmt, ...);
+noreturn obj_t *uw_throwcf(obj_t *sym, const wchar_t *fmt, ...);
+noreturn obj_t *uw_errorcf(const wchar_t *fmt, ...);
obj_t *uw_register_subtype(obj_t *sub, obj_t *super);
obj_t *uw_exception_subtype_p(obj_t *sub, obj_t *sup);
void uw_continue(uw_frame_t *curr, uw_frame_t *target);
@@ -150,7 +150,7 @@ noreturn obj_t *type_mismatch(const wchar_t *, ...);
#define internal_error(STR) \
uw_throwcf(internal_err, \
- "%s:%d %s", __FILE__, \
+ L"%s:%d %ls", __FILE__, \
__LINE__, STR)
#define type_assert(EXPR, ARGS) \
@@ -164,12 +164,12 @@ noreturn obj_t *type_mismatch(const wchar_t *, ...);
#define numeric_assert(EXPR) \
if (!(EXPR)) \
- uw_throwcf(numeric_err, "%s", \
- "assertion " #EXPR \
- " failed")
+ uw_throwcf(numeric_err, L"%ls", \
+ L"assertion " #EXPR \
+ L" failed")
#define range_bug_unless(EXPR) \
if (!(EXPR)) \
- uw_throwcf(range_err, "%s", \
- "assertion" #EXPR \
- " failed")
+ uw_throwcf(range_err, L"%ls", \
+ L"assertion" #EXPR \
+ L" failed")