commit | 482aaeb058a3c05235148d22f6c511416da009fb | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Sep 29 18:26:07 2005 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Sep 29 18:26:07 2005 +0000 |
tree | b9c63e97ec2826bfeea041afe176a04763dbcfa8 | |
parent | 4463f296d0744915fa25dbd893821833043f9a25 [diff] [blame] |
updated for version 7.0151
diff --git a/src/main.c b/src/main.c index 898205e..f7e2b1b 100644 --- a/src/main.c +++ b/src/main.c
@@ -1236,6 +1236,12 @@ init_locale() { setlocale(LC_ALL, ""); +# ifdef WIN32 + /* Apparently MS-Windows printf() may cause a crash when we give it 8-bit + * text while it's expecting text in the current locale. This call avoids + * that. */ + setlocale(LC_CTYPE, "C"); +# endif # ifdef FEAT_GETTEXT {