From bf70673380b48d711d8c5da9a4fc41244f250a83 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 18 Mar 2001 04:37:16 +0000 Subject: [PATCH] Accept empty statements. --- vvp/parse.y | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vvp/parse.y b/vvp/parse.y index 35ff2145a..ea507e415 100644 --- a/vvp/parse.y +++ b/vvp/parse.y @@ -105,6 +105,10 @@ statement | T_LABEL K_VAR ';' { compile_variable($1); } + + /* Oh and by the way, empty statements are OK as well. */ + + | ';' ;