From 72e3888ccea0c95da37acfe99681d92362a448eb Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sun, 23 Nov 2014 22:43:51 +0100 Subject: [PATCH] Functions don't need terminator. --- Monicelli.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monicelli.y b/Monicelli.y index a50599f..98c47cd 100644 --- a/Monicelli.y +++ b/Monicelli.y @@ -49,7 +49,7 @@ fun_decls: /* epsilon */ | fun_decls fun_decl ; fun_decl: - FUNDECL ID args COMMA statements CASE_END + FUNDECL ID args COMMA statements ; args: /* epsilon */ | PARAMS arglist