diff src/parse.y @ 620:8e4e7e5f307e

[project @ 1994-08-16 04:36:32 by jwe]
author jwe
date Tue, 16 Aug 1994 04:36:32 +0000
parents 4057f845c1ee
children 739d16c30481
line wrap: on
line diff
--- a/src/parse.y	Mon Aug 15 04:54:33 1994 +0000
+++ b/src/parse.y	Tue Aug 16 04:36:32 1994 +0000
@@ -1077,13 +1077,15 @@
 arg_list	: ':'
 		  {
 		    tree_constant *colon;
-		    colon = new tree_constant (tree_constant_rep::magic_colon);
+		    tree_constant::magic_colon t;
+		    colon = new tree_constant (t);
 		    $$ = new tree_argument_list (colon);
 		  }
 		| arg_list ',' ':'
 		  {
 		    tree_constant *colon;
-		    colon = new tree_constant (tree_constant_rep::magic_colon);
+		    tree_constant::magic_colon t;
+		    colon = new tree_constant (t);
 		    $1->append (colon);
 		  }
 		| expression