fixed previously introduced error

This commit is contained in:
ceriel 1988-07-06 09:43:05 +00:00
parent afc4d5211b
commit 2ea025fdb4
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
static char Version[] = "ACK Modula-2 compiler Version 0.39"; static char Version[] = "ACK Modula-2 compiler Version 0.40";

View file

@ -250,7 +250,7 @@ element(register t_node *nd;) :
expression(&(nd->nd_right->nd_right)) expression(&(nd->nd_right->nd_right))
| |
] ]
{ nd->nd_right = dot2node(Link, nd, NULLNODE); { nd->nd_right = dot2node(Link, nd->nd_right, NULLNODE);
nd->nd_right->nd_symb = ','; nd->nd_right->nd_symb = ',';
} }
; ;