[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4281-g9fd12ed
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4281-g9fd12ed |
Date: |
Sun, 29 Aug 2021 11:20:31 -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.1-stable has been updated
via 9fd12edd4469c3cf227dfc271d9bc7544b5b8b49 (commit)
via 2c4956a47393241a33e17fb26f0ecba78b0381bb (commit)
from 585a9456283db7169ea53a328824e55deb998d8f (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=9fd12edd4469c3cf227dfc271d9bc7544b5b8b49
commit 9fd12edd4469c3cf227dfc271d9bc7544b5b8b49
Merge: 2c4956a 585a945
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Sun Aug 29 18:19:53 2021 +0300
Merge branch 'gawk-5.1-stable' of ssh://git.sv.gnu.org/srv/git/gawk into
gawk-5.1-stable
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=2c4956a47393241a33e17fb26f0ecba78b0381bb
commit 2c4956a47393241a33e17fb26f0ecba78b0381bb
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Wed Aug 18 17:52:07 2021 -0400
Change a variable from int to bool.
diff --git a/ChangeLog b/ChangeLog
index ff1f213..f0b9785 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2021-08-18 Arnold D. Robbins <arnold@skeeve.com>
+
+ * main.c (main): Change have_srcfile from int to bool.
+
2021-08-15 Arnold D. Robbins <arnold@skeeve.com>
Allow setting AR and ARFLAGS on the configure command line.
diff --git a/main.c b/main.c
index 19c50b6..a93ad8b 100644
--- a/main.c
+++ b/main.c
@@ -220,7 +220,7 @@ main(int argc, char **argv)
{
int i;
char *extra_stack;
- int have_srcfile = 0;
+ bool have_srcfile = false;
SRCFILE *s;
char *cp;
#if defined(LOCALEDEBUG)
@@ -443,7 +443,7 @@ main(int argc, char **argv)
if (s->stype == SRC_EXTLIB)
load_ext(s->fullpath);
else if (s->stype != SRC_INC)
- have_srcfile++;
+ have_srcfile = true;
}
/* do version check after extensions are loaded to get extension info */
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
main.c | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4281-g9fd12ed,
Arnold Robbins <=