mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Stop treating apostrophes, parenthesis and curly braces as separate arguments
This commit is contained in:
parent
b771ff2426
commit
74af607d0c
1 changed files with 0 additions and 11 deletions
|
|
@ -2370,15 +2370,6 @@ skipwhite:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// parse single characters
|
|
||||||
if (c == '{' || c == '}' || c == ')' || c == '(' || c == '\'')
|
|
||||||
{
|
|
||||||
com_token[len] = c;
|
|
||||||
len++;
|
|
||||||
com_token[len] = 0;
|
|
||||||
return data + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// parse a regular word
|
// parse a regular word
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
@ -2398,8 +2389,6 @@ skipwhite:
|
||||||
len++;
|
len++;
|
||||||
c = *data;
|
c = *data;
|
||||||
}
|
}
|
||||||
if (c == '{' || c == '}' || c == ')'|| c == '(' || c == '\'')
|
|
||||||
break;
|
|
||||||
} while (c > 32);
|
} while (c > 32);
|
||||||
|
|
||||||
com_token[len] = 0;
|
com_token[len] = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue