diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-11 08:54:21 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-11 08:54:21 -0800 |
commit | d59d8950ec58702821ec618b92dfb2490ae0bf31 (patch) | |
tree | e27e2914d563171ad56c2f7ae30c7c49343df06c /unwind.c | |
parent | 2f62f352f603b837a5cf032c257531052530c410 (diff) | |
download | txr-d59d8950ec58702821ec618b92dfb2490ae0bf31.tar.gz txr-d59d8950ec58702821ec618b92dfb2490ae0bf31.tar.bz2 txr-d59d8950ec58702821ec618b92dfb2490ae0bf31.zip |
Big conversion to wide characters and UTF-8 support.
This is incomplete. There are too many dependencies on
wide character support from the C stream I/O library,
and implicit use of some encoding which may not be UTF-8.
The regex code does not handle wide characters properly.
Character type is still int in some places, rather than wchar_t.
Test suite passes though.
Diffstat (limited to 'unwind.c')
-rw-r--r-- | unwind.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -217,15 +217,15 @@ obj_t *uw_throw(obj_t *sym, obj_t *exception) if (ex == 0) { if (opt_loglevel >= 1) { obj_t *s = stringp(exception); - format(std_error, "~a: unhandled exception of type ~a:\n", + format(std_error, L"~a: unhandled exception of type ~a:\n", prog_string, sym, nao); - format(std_error, s ? "~a: ~a\n" : "~a: ~s\n", + format(std_error, s ? L"~a: ~a\n" : L"~a: ~s\n", prog_string, exception, nao); } if (uw_exception_subtype_p(sym, query_error) || uw_exception_subtype_p(sym, file_error)) { if (!output_produced) - put_cstring(std_output, "false\n"); + put_cstring(std_output, L"false\n"); exit(EXIT_FAILURE); } abort(); @@ -238,7 +238,7 @@ obj_t *uw_throw(obj_t *sym, obj_t *exception) abort(); } -obj_t *uw_throwf(obj_t *sym, const char *fmt, ...) +obj_t *uw_throwf(obj_t *sym, const wchar_t *fmt, ...) { va_list vl; obj_t *stream = make_string_output_stream(); @@ -251,7 +251,7 @@ obj_t *uw_throwf(obj_t *sym, const char *fmt, ...) abort(); } -obj_t *uw_errorf(const char *fmt, ...) +obj_t *uw_errorf(const wchar_t *fmt, ...) { va_list vl; obj_t *stream = make_string_output_stream(); @@ -290,7 +290,7 @@ obj_t *uw_errorcf(const char *fmt, ...) abort(); } -obj_t *type_mismatch(const char *fmt, ...) +obj_t *type_mismatch(const wchar_t *fmt, ...) { va_list vl; obj_t *stream = make_string_output_stream(); @@ -317,21 +317,21 @@ obj_t *uw_register_subtype(obj_t *sub, obj_t *sup) if (sub == t) { if (sup == t) return sup; - uw_throwf(type_error, "cannot define ~a as an exception subtype of ~a", + uw_throwf(type_error, L"cannot define ~a as an exception subtype of ~a", sub, sup, nao); } if (sup == nil) { - uw_throwf(type_error, "cannot define ~a as an exception subtype of ~a", + uw_throwf(type_error, L"cannot define ~a as an exception subtype of ~a", sub, sup, nao); } if (uw_exception_subtype_p(sub, sup)) - uw_throwf(type_error, "~a is already an exception subtype of ~a", + uw_throwf(type_error, L"~a is already an exception subtype of ~a", sub, sup, nao); if (uw_exception_subtype_p(sup, sub)) - uw_throwf(type_error, "~a is already an exception supertype of ~a", + uw_throwf(type_error, L"~a is already an exception supertype of ~a", sub, sup, nao); /* If sup symbol not registered, then we make it |