gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-827


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-827-gbfca161
Date: Sun, 28 Feb 2016 18:29:59 +0000

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, gawk-4.1-stable has been updated
       via  bfca1619d658bc30835f4fb29c53ddfe206f4b17 (commit)
      from  56469abd6e78971e8fc6f9eefcfc184d528c5e84 (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=bfca1619d658bc30835f4fb29c53ddfe206f4b17

commit bfca1619d658bc30835f4fb29c53ddfe206f4b17
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Feb 28 05:40:41 2016 +0200

    Fix copy-paste error in profiler's else handling.

diff --git a/ChangeLog b/ChangeLog
index 8ac6f19..0b8c5e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-02-28         Arnold D. Robbins     <address@hidden>
+
+       * profile.c (pprint): Fix copy-paste error in else handling.
+       Thanks to Michal Jaegermann for the report.
+
 2016-02-23         Arnold D. Robbins     <address@hidden>
 
        * config.guess, config.rpath, config.sub: Update to latest
diff --git a/profile.c b/profile.c
index 3d0b1cb..d002e23 100644
--- a/profile.c
+++ b/profile.c
@@ -885,7 +885,7 @@ cleanup:
                            && pc->branch_end == 
pc->nexti->nexti->branch_else->lasti) {
                                pprint(pc->nexti, pc->branch_end, IN_ELSE_IF);
                        } else {
-                               fprintf(prof_fp, "{\n", op2str(pc->opcode));
+                               fprintf(prof_fp, "{\n");
                                indent_in();
                                pprint(pc->nexti, pc->branch_end, 
NO_PPRINT_FLAGS);
                                indent_out();

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

Summary of changes:
 ChangeLog |    5 +++++
 profile.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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