- consume space between functionname and opening brackets
Fixes Rob's issue using busybox awk for building gcc-4_0 optionlist (http://busybox.net/lists/busybox/2005-October/016659.html)
This commit is contained in:
parent
86ac072b44
commit
bb20462cb3
@ -959,10 +959,11 @@ static uint32_t next_token(uint32_t expected)
|
|||||||
}
|
}
|
||||||
*(p-1) = '\0';
|
*(p-1) = '\0';
|
||||||
tc = TC_VARIABLE;
|
tc = TC_VARIABLE;
|
||||||
|
/* also consume whitespace between functionname and bracket */
|
||||||
|
skip_spaces(&p);
|
||||||
if (*p == '(') {
|
if (*p == '(') {
|
||||||
tc = TC_FUNCTION;
|
tc = TC_FUNCTION;
|
||||||
} else {
|
} else {
|
||||||
skip_spaces(&p);
|
|
||||||
if (*p == '[') {
|
if (*p == '[') {
|
||||||
p++;
|
p++;
|
||||||
tc = TC_ARRAY;
|
tc = TC_ARRAY;
|
||||||
|
Loading…
Reference in New Issue
Block a user