From 482aaeb058a3c05235148d22f6c511416da009fb Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 29 Sep 2005 18:26:07 +0000 Subject: updated for version 7.0151 --- src/main.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 898205e28..f7e2b1bb9 100644 --- a/src/main.c +++ b/src/main.c @@ -1236,6 +1236,12 @@ get_number_arg(p, idx, def) 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 { -- cgit v1.2.1