[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/api-mpfr, updated. gawk-4.1.0-24
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/api-mpfr, updated. gawk-4.1.0-2428-g08ee510 |
Date: |
Thu, 26 Jan 2017 03:56:06 +0000 (UTC) |
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, feature/api-mpfr has been updated
via 08ee51002bcead39798f309116e6bb4aaf8a1d3e (commit)
via 6b12d4f726b9578d5c878fa765d5c167c9d71618 (commit)
from b7c60a781d7a027df7f388d099f79014cec79f3b (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=08ee51002bcead39798f309116e6bb4aaf8a1d3e
commit 08ee51002bcead39798f309116e6bb4aaf8a1d3e
Merge: b7c60a7 6b12d4f
Author: Arnold D. Robbins <address@hidden>
Date: Thu Jan 26 05:55:58 2017 +0200
Merge branch 'master' into feature/api-mpfr
diff --cc node.c
index b83d2ac,f1f8017..bca2d5e
--- a/node.c
+++ b/node.c
@@@ -993,14 -1001,10 +993,14 @@@ void init_btowc_cache(
#define BLOCKCHUNK 100
- BLOCK nextfree[BLOCK_MAX] = {
- { 0, NULL}, /* invalid */
- { sizeof(NODE), NULL },
- { sizeof(BUCKET), NULL },
+ struct block_header nextfree[BLOCK_MAX] = {
+ { NULL, 0}, /* invalid */
+ { NULL, sizeof(NODE) },
+ { NULL, sizeof(BUCKET) },
+#ifdef HAVE_MPFR
- { sizeof(mpfr_t), NULL },
- { sizeof(mpz_t), NULL },
++ { NULL, sizeof(mpfr_t) },
++ { NULL, sizeof(mpz_t) },
+#endif
};
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 19 +++++++++++++++++++
awk.h | 18 +++++++++++-------
node.c | 22 +++++++++++-----------
3 files changed, 41 insertions(+), 18 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/api-mpfr, updated. gawk-4.1.0-2428-g08ee510,
Arnold Robbins <=