From cc3dd6fce971ee806f29adee5f8653852425f1cd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 16 Mar 2004 21:48:18 +0000 Subject: [PATCH] really fixed calling isspace() for non-ASCII characters git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fileconf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index af4fd10b06..f2118e743e 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -2031,7 +2031,7 @@ static wxString FilterOutEntryName(const wxString& str) // should *not* be quoted if ( #if !wxUSE_UNICODE - (c < 127) && + ((unsigned char)c < 127) && #endif // ANSI !wxIsalnum(c) && !wxStrchr(wxT("@_/-!.*%"), c) ) { -- 2.45.2