mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
[gatest] Don't lex . as a single character
Lexing . as a single character makes it impossible to enter fractions. Unfortunately, this means that . as dot product requires white space on either side.
This commit is contained in:
parent
6bd9aceb28
commit
65764a06c0
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ static int
|
|||
parse_script (string name, QFile file)
|
||||
{
|
||||
script = Script_New ();
|
||||
Script_SetSingle (script, "()[]{}/+-^&.~=;!");
|
||||
Script_SetSingle (script, "()[]{}/+-^&~=;!");
|
||||
token_str = Script_FromFile (script, name, file);
|
||||
|
||||
while (!match (EOF)) {
|
||||
|
|
Loading…
Reference in a new issue