- Use iswspace instead isspace. Patch by Alexander Yastrebov (menone7[at]gmail[dot]com)

svn path=/trunk/; revision=42933
This commit is contained in:
Dmitry Chapyshev 2009-08-25 09:45:07 +00:00
parent b6cecfd934
commit a5e2e10413

View 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