bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gawk-3.1.0 awkgram.y problem


From: YABUKI Youichi
Subject: gawk-3.1.0 awkgram.y problem
Date: Mon, 29 Oct 2001 15:43:17 +0900
User-agent: EMH/1.10.0 SEMI/1.13.7 (粟津) CLIME/1.13.6 (中ノ庄) Emacs/20.7 (i386-vine-linux-gnu) MULE/4.1 (葵)

gawk-3.1.0/awkgram.y seems to need the following patch,
when byacc is used to generate awkgram.c instead of bison.

--- gawk-3.1.0.orig/awkgram.y   Mon Apr 23 16:25:58 2001
+++ gawk-3.1.0/awkgram.y        Fri Oct 26 19:28:41 2001
@@ -438,7 +438,7 @@ statement
                {
                        $$ = node($3, $1, $5);
                        if ($$->type == Node_K_printf)
-                               count_args($$)
+                               count_args($$);
                }
        | print opt_rexpression_list output_redir statement_term
                {
@@ -460,7 +460,7 @@ statement
 
                        $$ = node($2, $1, $3);
                        if ($$->type == Node_K_printf)
-                               count_args($$)
+                               count_args($$);
                }
        | LEX_NEXT statement_term
                { NODETYPE type;

--
<address@hidden> YABUKI Youichi, Linus Support Group, SRA Inc.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]