[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5469-g844ab36e
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5469-g844ab36e |
Date: |
Sun, 19 May 2024 13:40:12 -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, gawk-5.3-stable has been updated
via 844ab36e50700454f550fc68be542d1ea3b4e30a (commit)
from cb0b47c654f6b1563ab55431b0658bb0be716123 (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=844ab36e50700454f550fc68be542d1ea3b4e30a
commit 844ab36e50700454f550fc68be542d1ea3b4e30a
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Sun May 19 20:39:56 2024 +0300
Remove some unused variables.
diff --git a/ChangeLog b/ChangeLog
index 49e63217..f33da711 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
2024-05-19 Arnold D. Robbins <arnold@skeeve.com>
* awkgram.c: Updated.
+ * builtin.c (gawk_system): Remove an unused variable.
+ * io.c (gawk_popen_write): Ditto.
2024-05-18 Arnold D. Robbins <arnold@skeeve.com>
diff --git a/builtin.c b/builtin.c
index a0662575..275456b3 100644
--- a/builtin.c
+++ b/builtin.c
@@ -4707,7 +4707,7 @@ gawk_system(const char *command)
#if defined(VMS) || defined(__MINGW32__)
return system(command);
#else /* ! (defined(VMS) || defined(__MINGW32__)) */
- pid_t childpid, pid;
+ pid_t childpid;
int status;
if ((childpid = fork()) == 0) {
diff --git a/io.c b/io.c
index 0e907243..4853a2ac 100644
--- a/io.c
+++ b/io.c
@@ -4617,7 +4617,6 @@ gawk_popen_write(const char *cmd)
#if defined(VMS) || defined(__MINGW32__)
return popen(cmd, binmode("w"));
#else
- size_t i;
pid_t childpid;
int pipefds[2];
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
builtin.c | 2 +-
io.c | 1 -
3 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5469-g844ab36e,
Arnold Robbins <=