Let's not have + and - as sole token, always allow ++ and -- to become operators independent of the noops flag

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 18:07:19 +01:00
parent b457bfec2a
commit e3acdcf0a9

View file

@ -1076,8 +1076,10 @@ int lex_do(lex_file *lex)
*/
switch (ch)
{
/*
case '+':
case '-':
*/
case '*':
case '/':
case '<':