diff src/parse.y @ 5127:7f4a3e4bc58a

[project @ 2005-02-02 22:08:49 by jwe]
author jwe
date Wed, 02 Feb 2005 22:08:49 +0000
parents b04b30d30c66
children 6b9c4cf05a6a
line wrap: on
line diff
--- a/src/parse.y	Wed Feb 02 18:26:25 2005 +0000
+++ b/src/parse.y	Wed Feb 02 22:08:49 2005 +0000
@@ -1068,6 +1068,11 @@
 		    if (! ($$ = make_for_command ($1, $3, $5, $7, $8, $2)))
 		      ABORT_PARSE;
 		  }
+		| FOR stash_comment '(' assign_lhs '=' expression ')' opt_sep opt_list END
+		  {
+		    if (! ($$ = make_for_command ($1, $4, $6, $9, $10, $2)))
+		      ABORT_PARSE;
+		  }
 		;
 
 // =======