cmd: Skip tabs as well as spaces in WCMD_skip_leading_spaces.

This commit is contained in:
Frédéric Delanoy 2011-08-25 00:48:19 +02:00 committed by Alexandre Julliard
parent 7b125126a7
commit f37ab586d8
2 changed files with 4 additions and 4 deletions

View File

@ -158,8 +158,8 @@ BAZ=bazbaz
bazbaz
set "FOO=bar" should not include the quotes in the variable value
bar
@todo_wine@foo
@todo_wine@''
foo
''
'foo@space@'
'foo@tab@'
------------ Testing variable expansion --------------

View File

@ -443,7 +443,7 @@ void WCMD_strsubstW(WCHAR *start, const WCHAR *next, const WCHAR *insert, int le
/***************************************************************************
* WCMD_skip_leading_spaces
*
* Return a pointer to the first non-space character of string.
* Return a pointer to the first non-whitespace character of string.
* Does not modify the input string.
*/
WCHAR *WCMD_skip_leading_spaces (WCHAR *string) {
@ -451,7 +451,7 @@ WCHAR *WCMD_skip_leading_spaces (WCHAR *string) {
WCHAR *ptr;
ptr = string;
while (*ptr == ' ') ptr++;
while (*ptr == ' ' || *ptr == '\t') ptr++;
return ptr;
}