Mescc: avoid `if'.

* module/language/c/lexer.mes (keywords): Produce `If'.
* module/language/c/parser.mes (c-parser): Use `If.'
This commit is contained in:
Jan Nieuwenhuizen 2016-11-20 21:17:49 +01:00
parent d34dba24f2
commit 79d989268f
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@
("while" . while)
("continue" . continue)
("default" . default)
("if" . if)
("if" . If)
("do" . do)
;; these aren't exactly keywords, but hey

View File

@ -61,7 +61,7 @@
break case continue goto label
return switch
for
if else
If else
(left: or && ! * / + -)
(left: bool double float enum void int struct)
(left: < > <= >=)