- Added modulus to FParseContext/xlat.
- Fixed: Division of tag arguments for xlat was in the wrong order. SVN r3344 (trunk)
This commit is contained in:
parent
b21062c39a
commit
4b2ae689ed
5 changed files with 22 additions and 7 deletions
|
|
@ -267,6 +267,7 @@ loop:
|
|||
case '-': return TokenTrans[MINUS];
|
||||
case '+': return TokenTrans[PLUS];
|
||||
case '*': return TokenTrans[MULTIPLY];
|
||||
case '%': return TokenTrans[MODULUS];
|
||||
case '(': return TokenTrans[LPAREN];
|
||||
case ')': return TokenTrans[RPAREN];
|
||||
case ',': return TokenTrans[COMMA];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue