gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1993-g89e27b


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1993-g89e27bf
Date: Sun, 16 Oct 2016 11:34:11 +0000 (UTC)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  89e27bfb12cb18fe6d14dfb4957f185e8bb21932 (commit)
      from  2d63bc3ee2a686560d29e1eb7b433deb45fd7619 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=89e27bfb12cb18fe6d14dfb4957f185e8bb21932

commit 89e27bfb12cb18fe6d14dfb4957f185e8bb21932
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Oct 16 14:33:52 2016 +0300

    Typo fix in call to add_sign_to_num.

diff --git a/ChangeLog b/ChangeLog
index 218cf24..eb1947f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2016-10-16         Arnold D. Robbins     <address@hidden>
 
+       * awkgram.y: Typo fix in call to add_sign_to_num.
+
+2016-10-16         Arnold D. Robbins     <address@hidden>
+
        * awk.h (enum opcodeval): Add Op_unary_plus.
        * awkgram.y (add_sign_to_num): New routine to put in a sign on
        profiling constants.  Call it as necessary.
diff --git a/awkgram.c b/awkgram.c
index 2832bab..7fb0be6 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -3079,7 +3079,7 @@ regular_print:
     {
                NODE *n = (yyvsp[0])->lasti->memory;
                bcfree((yyvsp[-1]));
-               add_sign_to_num(n, "+");
+               add_sign_to_num(n, '+');
                (yyval) = (yyvsp[0]);
          }
 #line 3086 "awkgram.c" /* yacc.c:1646  */
diff --git a/awkgram.y b/awkgram.y
index 23325c7..04e65ef 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -1239,7 +1239,7 @@ case_value
          {
                NODE *n = $2->lasti->memory;
                bcfree($1);
-               add_sign_to_num(n, "+");
+               add_sign_to_num(n, '+');
                $$ = $2;
          }
        | YSTRING 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |    4 ++++
 awkgram.c |    2 +-
 awkgram.y |    2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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