diff src/parse.y @ 440:e27d10f2e573

[project @ 1994-05-30 03:33:37 by jwe]
author jwe
date Mon, 30 May 1994 03:33:37 +0000
parents fa0453b25410
children 565206294f5a
line wrap: on
line diff
--- a/src/parse.y	Thu May 26 01:06:01 1994 +0000
+++ b/src/parse.y	Mon May 30 03:33:37 1994 +0000
@@ -342,7 +342,10 @@
 		;
 
 list1		: command
-		  { $$ = new tree_command_list ($1); }
+		  {
+		    beginning_of_function = 0;
+		    $$ = new tree_command_list ($1);
+		  }
 		| list1 comma_nl_sep command
 		  { $$ = $1->chain ($3); }
 		| list1 semi_sep command