[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4253-g30280ff
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4253-g30280ff |
Date: |
Tue, 25 May 2021 23:35:13 -0400 (EDT) |
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, zos-debug has been updated
via 30280ff60d5d96694637da4ab6f6d642696212d3 (commit)
from 751bcb6df561edb12f16a1f5f35f499f82844e1f (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=30280ff60d5d96694637da4ab6f6d642696212d3
commit 30280ff60d5d96694637da4ab6f6d642696212d3
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Wed May 26 06:35:02 2021 +0300
Small fix in awkgram.y.
diff --git a/awkgram.c b/awkgram.c
index d453742..fbc7ac0 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -6983,7 +6983,7 @@ make_instruction:
if (strcmp(tokstart, "delete") == 0) {
static int counter = 0;
if (++counter == 4)
- stopme(NULL);
+ stopme(0);
}
return lasttok = class;
}
diff --git a/awkgram.y b/awkgram.y
index 67b0e77..390674d 100644
--- a/awkgram.y
+++ b/awkgram.y
@@ -4481,7 +4481,7 @@ make_instruction:
if (strcmp(tokstart, "delete") == 0) {
static int counter = 0;
if (++counter == 4)
- stopme(NULL);
+ stopme(0);
}
return lasttok = class;
}
-----------------------------------------------------------------------
Summary of changes:
awkgram.c | 2 +-
awkgram.y | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, zos-debug, updated. gawk-4.1.0-4253-g30280ff,
Arnold Robbins <=