gawk-diffs
[Top][All Lists]
Advanced

[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-2437-g3c51b42
Date: Fri, 27 Jan 2017 10:14:17 +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  3c51b422fcd2bbb696dde8ab302c515eb7939759 (commit)
       via  8352dc592cf635a731f7f91d183c0679b3fc4fd2 (commit)
       via  6639a575ebfbf3a62fe168c6152429c47d591d75 (commit)
       via  46a2c1e4abbbb79df33bd9a4b79ea878ea297e48 (commit)
       via  c0c69f02e4d300aebf91516a1a521828f6885b26 (commit)
       via  d6fe1f907f495863c3ff6875f9d308e5d08ee0ff (commit)
       via  915d9b93c16bce9ff740df7ab0ba2e2c2a3a516f (commit)
       via  15f74af1fe48bc4048cb345615389fa7bcc05f85 (commit)
       via  a405df4fd26c1a1428fb3eb9d749c42295256634 (commit)
      from  08ee51002bcead39798f309116e6bb4aaf8a1d3e (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=3c51b422fcd2bbb696dde8ab302c515eb7939759

commit 3c51b422fcd2bbb696dde8ab302c515eb7939759
Merge: 08ee510 8352dc5
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Jan 27 12:14:11 2017 +0200

    Merge branch 'master' into feature/api-mpfr

diff --cc awk.h
index 39dcf5e,199aba3..646609d
--- a/awk.h
+++ b/awk.h
@@@ -1060,11 -1060,8 +1060,10 @@@ struct block_header 
  };
  
  enum block_id {
-       BLOCK_INVALID = 0,      /* not legal */
-       BLOCK_NODE,
+       BLOCK_NODE = 0,
        BLOCK_BUCKET,
 +      BLOCK_MPFR,
 +      BLOCK_MPZ,
        BLOCK_MAX       /* count */
  };
  
diff --cc node.c
index bca2d5e,d7ed98e..2e05814
--- a/node.c
+++ b/node.c
@@@ -994,13 -1002,8 +994,12 @@@ void init_btowc_cache(
  #define BLOCKCHUNK 100
  
  struct block_header nextfree[BLOCK_MAX] = {
-       { NULL, 0},     /* invalid */
        { NULL, sizeof(NODE) },
        { NULL, sizeof(BUCKET) },
 +#ifdef HAVE_MPFR
 +      { NULL, sizeof(mpfr_t) },
 +      { NULL, sizeof(mpz_t) },
 +#endif
  };
  
  

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog        |   18 +
 awk.h            |    3 +-
 debug.c          |    6 +-
 doc/ChangeLog    |    4 +
 doc/gawk.info    |    4 +-
 doc/gawk.texi    |    6 +-
 doc/gawktexi.in  |    6 +-
 interpret.h      |    6 +-
 node.c           |    1 -
 po/ChangeLog     |    5 +
 po/LINGUAS       |    1 +
 po/pt_BR.po      | 3900 +++++++++++++++++++++++++++++++++++++-----------------
 test/ChangeLog   |    5 +
 test/Makefile.am |    5 +-
 test/Makefile.in |   10 +-
 test/Maketests   |    5 +
 test/gensub3.awk |    8 +
 test/gensub3.in  |    2 +
 test/gensub3.ok  |    1 +
 19 files changed, 2747 insertions(+), 1249 deletions(-)
 create mode 100644 test/gensub3.awk
 create mode 100644 test/gensub3.in
 create mode 100644 test/gensub3.ok


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]