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-2477-g4dbaf72
Date: Mon, 20 Mar 2017 15:23:40 -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, feature/api-mpfr has been updated
       via  4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54 (commit)
       via  efc7e96c876ccf3b83ab3249eca852a0292ff943 (commit)
       via  7ec5068a7419cc4dddcf7e060077a1287217c5cd (commit)
       via  de684770acc545bf14f85655d44fe91e9afa0ba3 (commit)
       via  1e9198f58d7d5616e03dc4b2bb6f738ab4e89f06 (commit)
       via  3272a45617a6c6b58096e7e8349c7d5d63b910f6 (commit)
       via  0fb0e8d020571df6f874e1e66f577cff14ba0784 (commit)
      from  65ed9b66cada11364e9b67ea1cd178b259cd0e36 (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=4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54

commit 4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54
Merge: 65ed9b6 efc7e96
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Mar 20 21:23:32 2017 +0200

    Merge branch 'master' into feature/api-mpfr

diff --cc awk.h
index 72c8cbf,163ad36..0694bfa
--- a/awk.h
+++ b/awk.h
@@@ -1961,17 -1963,10 +1965,25 @@@ erealloc_real(void *ptr, size_t count, 
        return ret;
  }
  
 +static inline NODE *
 +make_number_node(unsigned int tp)
 +{
 +      NODE *r;
 +      getnode(r);
 +      r->type = Node_val;
 +      r->valref = 1;
 +      r->flags = (tp|MALLOC|NUMBER|NUMCUR);
 +      r->stptr = NULL;
 +      r->stlen = 0;
 +      r->wstptr = NULL;
 +      r->wstlen = 0;
 +      return r;
 +}
++
+ #ifdef SIGPIPE
+ #define ignore_sigpipe() signal(SIGPIPE, SIG_IGN)
+ #define set_sigpipe_to_default() signal(SIGPIPE, SIG_DFL)
+ #else
+ #define ignore_sigpipe()
+ #define set_sigpipe_to_default()
+ #endif

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

Summary of changes:
 ChangeLog                        |   29 +
 awk.h                            |   12 +
 builtin.c                        |   21 +-
 config.guess                     |   12 +-
 config.rpath                     |    2 +-
 config.sub                       |    5 +-
 configure                        |   33 +-
 configure.ac                     |   33 +-
 doc/ChangeLog                    |    6 +
 doc/gawk.info                    | 1122 ++++++++++++++++++++------------------
 doc/gawk.texi                    |   59 +-
 doc/gawktexi.in                  |   59 +-
 extension/build-aux/ChangeLog    |    5 +
 extension/build-aux/config.guess |   12 +-
 extension/build-aux/config.rpath |    2 +-
 extension/build-aux/config.sub   |    5 +-
 extension/build-aux/install-sh   |    4 +-
 install-sh                       |    4 +-
 io.c                             |   69 ++-
 main.c                           |    5 +-
 test/ChangeLog                   |    7 +
 test/Makefile.am                 |   12 +-
 test/Makefile.in                 |   12 +-
 test/argarray.ok                 |    4 +-
 24 files changed, 888 insertions(+), 646 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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