gawk-diffs
[Top][All Lists]
Advanced

[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-910


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-910-gf54bc42
Date: Thu, 9 Jun 2016 18:58:56 +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, gawk-4.1-stable has been updated
       via  f54bc428df973ee3af4731057e9c50f69d02745c (commit)
       via  2f17c9377828998b8b0f6cabc17b63353efab385 (commit)
       via  ac268ec2058b1615f41c750ccc55cf038ab1bca6 (commit)
      from  b504b2707e0780d5f0b347aef9bead0e516813a2 (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=f54bc428df973ee3af4731057e9c50f69d02745c

commit f54bc428df973ee3af4731057e9c50f69d02745c
Author: Arnold D. Robbins <address@hidden>
Date:   Thu Jun 9 21:58:41 2016 +0300

    And add configure too. Oops.

diff --git a/configure b/configure
index 634c667..c7f5ddc 100755
--- a/configure
+++ b/configure
@@ -10597,7 +10597,8 @@ fi
                as_fn_error $? "extension support requested, but unavailable" 
"$LINENO" 5
        fi
        enable_extensions=$extensions_supported
-        if test "x$enable_extensions" = "xyes"; then
+fi
+ if test "x$enable_extensions" = "xyes"; then
   ENABLE_EXTENSIONS_TRUE=
   ENABLE_EXTENSIONS_FALSE='#'
 else
@@ -10605,7 +10606,6 @@ else
   ENABLE_EXTENSIONS_FALSE=
 fi
 
-fi
 
 case $host_os in
 vms*|beos*|os2*|msdos)

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=2f17c9377828998b8b0f6cabc17b63353efab385

commit 2f17c9377828998b8b0f6cabc17b63353efab385
Author: Arnold D. Robbins <address@hidden>
Date:   Thu Jun 9 21:49:10 2016 +0300

    Fix configure.ac --disable-extensions.

diff --git a/ChangeLog b/ChangeLog
index f3ca45b..e49c5c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,12 @@
 
        * dfa.c: Sync with GNU grep.
 
+       Unrelated:
+
+       * configure.ac: Move AM_CONDITIONAL[ENABLE_EXTENSIONS] outside
+       the enclosing if. Thanks to Assaf Gordon <address@hidden>
+       for the report.
+
 2016-06-08         Arnold D. Robbins     <address@hidden>
 
        * symbol.c (lookup): If got Node_val, it's a non-variable
diff --git a/configure.ac b/configure.ac
index 62f79ec..58600f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -334,8 +334,8 @@ if test "x$enable_extensions" != "xno"; then
                AC_MSG_ERROR([extension support requested, but unavailable])
        fi
        enable_extensions=$extensions_supported
-       AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = 
"xyes"])
 fi
+AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = "xyes"])
 
 dnl check for how to use getpgrp
 dnl have to hardwire it for VMS POSIX. Sigh.

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=ac268ec2058b1615f41c750ccc55cf038ab1bca6

commit ac268ec2058b1615f41c750ccc55cf038ab1bca6
Author: Arnold D. Robbins <address@hidden>
Date:   Thu Jun 9 21:48:36 2016 +0300

    Sync with grep.

diff --git a/ChangeLog b/ChangeLog
index 922f4f0..f3ca45b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-06-09         Arnold D. Robbins     <address@hidden>
+
+       * dfa.c: Sync with GNU grep.
+
 2016-06-08         Arnold D. Robbins     <address@hidden>
 
        * symbol.c (lookup): If got Node_val, it's a non-variable
diff --git a/dfa.c b/dfa.c
index a41914e..97d4497 100644
--- a/dfa.c
+++ b/dfa.c
@@ -1222,7 +1222,7 @@ parse_bracket_exp (void)
 
   if (dfa->multibyte)
     {
-      static charclass zeroclass;
+      static charclass const zeroclass;
       work_mbc->invert = invert;
       work_mbc->cset = equal (ccl, zeroclass) ? -1 : charclass_index (ccl);
       return MBCSET;

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

Summary of changes:
 ChangeLog    |   10 ++++++++++
 configure    |    4 ++--
 configure.ac |    2 +-
 dfa.c        |    2 +-
 4 files changed, 14 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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