From 701e06b78121338a3d31771eebe7305641c413b4 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sun, 23 Nov 2014 19:30:30 +0100 Subject: [PATCH] Newline after function definition. --- Monicelli.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monicelli.y b/Monicelli.y index b4ea2f5..da3e342 100644 --- a/Monicelli.y +++ b/Monicelli.y @@ -50,7 +50,7 @@ fun_decls: /* epsilon */ | fun_decls fun_decl ; fun_decl: - FUNDECL ID args LCURL statements RCURL + FUNDECL ID args LCURL statements RCURL NEWLINE ; args: /* epsilon */ | PARAMS arglist