[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-831
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-831-g309b205 |
Date: |
Thu, 03 Mar 2016 18:57:48 +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 309b2057256e2148b444ba556ca6639f73da188f (commit)
via b60cdd6dc30f9f4845f43b7ca17a490233ec3918 (commit)
from 99c88b96ee4fd5ae854c485e208737be8cca8301 (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=309b2057256e2148b444ba556ca6639f73da188f
commit 309b2057256e2148b444ba556ca6639f73da188f
Merge: b60cdd6 99c88b9
Author: Arnold D. Robbins <address@hidden>
Date: Thu Mar 3 20:57:33 2016 +0200
Merge branch 'gawk-4.1-stable' of ssh://git.sv.gnu.org/srv/git/gawk into
gawk-4.1-stable
diff --cc ChangeLog
index e1cb3d1,1b421f4..86cb8e7
--- a/ChangeLog
+++ b/ChangeLog
@@@ -1,8 -1,8 +1,13 @@@
+2016-03-03 Arnold D. Robbins <address@hidden>
+
+ * profile.c (pp_list): Unconditionally compute delimlen. Avoids
+ compiler warning.
+
+ 2016-03-02 Arnold D. Robbins <address@hidden>
+
+ * debug.c (print_instruction): Improvements in instruction dump
+ for if and else.
+
2016-02-29 Arnold D. Robbins <address@hidden>
* profile.c (pp_list): Handle the case of nargs equal to zero.
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b60cdd6dc30f9f4845f43b7ca17a490233ec3918
commit b60cdd6dc30f9f4845f43b7ca17a490233ec3918
Author: Arnold D. Robbins <address@hidden>
Date: Thu Mar 3 20:55:06 2016 +0200
Fix a compile warning in profile.c.
diff --git a/ChangeLog b/ChangeLog
index 67d81cf..e1cb3d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-03 Arnold D. Robbins <address@hidden>
+
+ * profile.c (pp_list): Unconditionally compute delimlen. Avoids
+ compiler warning.
+
2016-02-29 Arnold D. Robbins <address@hidden>
* profile.c (pp_list): Handle the case of nargs equal to zero.
diff --git a/profile.c b/profile.c
index 178deb7..842b04f 100644
--- a/profile.c
+++ b/profile.c
@@ -1423,10 +1423,10 @@ pp_list(int nargs, const char *paren, const char *delim)
erealloc(pp_args, NODE **, (nargs + 2) * sizeof(NODE *),
"pp_list");
}
+ delimlen = strlen(delim);
if (nargs == 0)
len = 2;
else {
- delimlen = strlen(delim);
len = -delimlen;
for (i = 1; i <= nargs; i++) {
r = pp_args[i] = pp_pop();
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
profile.c | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-831-g309b205,
Arnold Robbins <=