- Use iswspace instead isspace. Patch by Alexander Yastrebov (menone7[at]gmail[dot...
authorDmitry Chapyshev <dmitry@reactos.org>
Tue, 25 Aug 2009 09:45:07 +0000 (09:45 +0000)
committerDmitry Chapyshev <dmitry@reactos.org>
Tue, 25 Aug 2009 09:45:07 +0000 (09:45 +0000)
svn path=/trunk/; revision=42933

reactos/base/applications/rapps/parser.c

index c166c4a..807ffca 100644 (file)
@@ -56,7 +56,7 @@ typedef struct
 static ITEMS *ItemsArray[N_CACHED_ITEMS] = {NULL};
 #define CurProfile (ItemsArray[0])
 #define IS_ENTRY_COMMENT(str)  ((str)[0] == ';')
-#define ParserIsSpace(c) (isspace(c) || c == 0x1a)
+#define ParserIsSpace(c) (iswspace(c) || c == 0x1a)
 
 
 static