From dd70ae0b6e8f29fb5d915fe1de3ce08c7a9f7722 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Thu, 30 Jan 2014 22:08:31 +0900 Subject: add semicolon after the statements --- src/parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/parse.y b/src/parse.y index 645cb58e2..e16bfaebd 100644 --- a/src/parse.y +++ b/src/parse.y @@ -2155,7 +2155,7 @@ primary : literal } | keyword_class { - $$ = p->lineno + $$ = p->lineno; } cpath superclass { @@ -2173,7 +2173,7 @@ primary : literal } | keyword_class { - $$ = p->lineno + $$ = p->lineno; } tLSHFT expr { @@ -2197,7 +2197,7 @@ primary : literal } | keyword_module { - $$ = p->lineno + $$ = p->lineno; } cpath { -- cgit v1.2.3