Branch: Tag:

1999-12-09

1999-12-09 23:24:58 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed typo.

Rev: src/language.yacc:1.141

184:   /* This is the grammar definition of Pike. */      #include "global.h" - RCSID("$Id: language.yacc,v 1.140 1999/12/09 22:53:35 grubba Exp $"); + RCSID("$Id: language.yacc,v 1.141 1999/12/09 23:24:58 grubba Exp $");   #ifdef HAVE_MEMORY_H   #include <memory.h>   #endif
2024:    | '(' error '}' { $$=0; yyerror("Missing ')'."); }    | '(' error ';' { $$=0; yyerror("Missing ')'."); }    | block -  | error { $$=0; yerror("Bad expression for catch."); } +  | error { $$=0; yyerror("Bad expression for catch."); }    ;      catch: F_CATCH