Mon Sep 27 21:30:52 PDT 2004
- Previous message: [Slony1-commit] By cbbrowne: New tools to show SLONY configuration
- Next message: [Slony1-commit] By darcyb: fix "Warning: confoptions.c, line 457: The scalar variable
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
fix "fatal error: illegal rule: missing semicolon or | ?, line 458" as seen by some system yaccers
Modified Files:
--------------
slony1-engine/src/slonik:
parser.y (r1.17 -> r1.18)
-------------- next part --------------
Index: parser.y
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slonik/parser.y,v
retrieving revision 1.17
retrieving revision 1.18
diff -Lsrc/slonik/parser.y -Lsrc/slonik/parser.y -u -w -r1.17 -r1.18
--- src/slonik/parser.y
+++ src/slonik/parser.y
@@ -85,8 +85,9 @@
*/
char *current_file = "<stdin>";
extern int yyleng;
-
-
+#ifdef DEBUG
+int yydebug=1;
+#endif
/*
* Local functions
*/
@@ -454,8 +455,9 @@
{ $$ = $1; }
| stmt_wait_event
{ $$ = $1; }
- | stmt_error ';' { yyerrok; }
- { $$ = $1; }
+ | stmt_error ';'
+ { yyerrok;
+ $$ = $1; }
;
stmt_echo : lno K_ECHO literal ';'
- Previous message: [Slony1-commit] By cbbrowne: New tools to show SLONY configuration
- Next message: [Slony1-commit] By darcyb: fix "Warning: confoptions.c, line 457: The scalar variable
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list