diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | txr.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2009-11-11 Kaz Kylheku <kkylheku@gmail.com> + * txr.c (main): call setlocale to set the LC_CTYPE to en_US.UTF-8, + so that the C library streams do the encoding. Once the program + is weaned from C library wide character stream I/O, this can go away. + +2009-11-11 Kaz Kylheku <kkylheku@gmail.com> + 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. @@ -32,6 +32,7 @@ #include <dirent.h> #include <setjmp.h> #include <wchar.h> +#include <locale.h> #include "lib.h" #include "stream.h" #include "gc.h" @@ -142,6 +143,7 @@ int main(int argc, char **argv) obj_t *stack_bottom = nil; progname = argv[0] ? utf8_dup_from(argv[0]) : progname; init(progname, oom_realloc_handler, &stack_bottom); + setlocale(LC_CTYPE, "en_US.UTF-8"); return txr_main(argc, argv); } |