Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision fc846ae1acddff210b81091b8b89c32961a0002c)
+++ src/Parser/parser.yy	(revision 7b10ea92bf343e26e80a30f9c92278bbe841467f)
@@ -1310,7 +1310,7 @@
 
 handler_clause:
-	handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop
+	handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
 		{ $$ = new StatementNode( build_catch( $1, $4, $6, $8 ) ); }
-	| handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement pop
+	| handler_clause handler_key '(' push exception_declaration pop handler_predicate_opt ')' compound_statement
 		{ $$ = (StatementNode *)$1->set_last( new StatementNode( build_catch( $2, $5, $7, $9 ) ) ); }
 	;
