Skip to content
Snippets Groups Projects
Commit 107029be authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed 20 shift/reduce conflicts due to a couple of typos.

Rev: src/language.yacc:1.218
parent 3857bd50
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
/* This is the grammar definition of Pike. */ /* This is the grammar definition of Pike. */
#include "global.h" #include "global.h"
RCSID("$Id: language.yacc,v 1.217 2000/11/04 16:23:13 grubba Exp $"); RCSID("$Id: language.yacc,v 1.218 2000/11/04 17:43:02 grubba Exp $");
#ifdef HAVE_MEMORY_H #ifdef HAVE_MEMORY_H
#include <memory.h> #include <memory.h>
#endif #endif
...@@ -1592,17 +1592,17 @@ local_constant_name: TOK_IDENTIFIER '=' safe_expr0 ...@@ -1592,17 +1592,17 @@ local_constant_name: TOK_IDENTIFIER '=' safe_expr0
; ;
local_constant_list: local_constant_name local_constant_list: local_constant_name
| local_constant_list ',' local_constant_list | local_constant_list ',' local_constant_name
; ;
local_constant: TOK_CONSTANT local_constant_list ; local_constant: TOK_CONSTANT local_constant_list ';'
| TOK_CONSTANT error ';' { yyerrok; } | TOK_CONSTANT error ';' { yyerrok; }
| TOK_CONSTANT error TOK_LEX_EOF | TOK_CONSTANT error TOK_LEX_EOF
{ {
yyerror("Missing ';'."); yyerror("Missing ';'.");
yyerror("Unexpected end of file."); yyerror("Unexpected end of file.");
} }
| TOK_CONSTANT error '}' { yyerror("Missing ';'."); } | TOK_CONSTANT error '}' { yyerror("Missing ';'."); }
; ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment