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:
parent
d34dba24f2
commit
79d989268f
|
@ -220,7 +220,7 @@
|
||||||
("while" . while)
|
("while" . while)
|
||||||
("continue" . continue)
|
("continue" . continue)
|
||||||
("default" . default)
|
("default" . default)
|
||||||
("if" . if)
|
("if" . If)
|
||||||
("do" . do)
|
("do" . do)
|
||||||
|
|
||||||
;; these aren't exactly keywords, but hey
|
;; these aren't exactly keywords, but hey
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
break case continue goto label
|
break case continue goto label
|
||||||
return switch
|
return switch
|
||||||
for
|
for
|
||||||
if else
|
If else
|
||||||
(left: or && ! * / + -)
|
(left: or && ! * / + -)
|
||||||
(left: bool double float enum void int struct)
|
(left: bool double float enum void int struct)
|
||||||
(left: < > <= >=)
|
(left: < > <= >=)
|
||||||
|
|
Loading…
Reference in a new issue