mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Use iswspace instead isspace. Patch by Alexander Yastrebov (menone7[at]gmail[dot]com)
svn path=/trunk/; revision=42933
This commit is contained in:
parent
b6cecfd934
commit
a5e2e10413
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue