diff options
Diffstat (limited to 'Source/kwsys/System.c')
-rw-r--r-- | Source/kwsys/System.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c index b67ccb6..c985325 100644 --- a/Source/kwsys/System.c +++ b/Source/kwsys/System.c @@ -709,7 +709,7 @@ static char** kwsysSystem__ParseUnixCommand(const char* command, int flags) } in_escape = 0; } - else if(*c == '\\' && !in_single) + else if(*c == '\\') { /* The next character should be escaped. */ in_escape = 1; |