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-782


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-782-g640d55e
Date: Sat, 02 Jan 2016 17:41:12 +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  640d55ecdaced9e826a95a0bce4c65a3e5965cae (commit)
      from  0bf047964956e90481de3941768937c4318db948 (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=640d55ecdaced9e826a95a0bce4c65a3e5965cae

commit 640d55ecdaced9e826a95a0bce4c65a3e5965cae
Author: Arnold D. Robbins <address@hidden>
Date:   Sat Jan 2 19:40:51 2016 +0200

    Minor fix in dfa.c. Sync dfa with grep.

diff --git a/ChangeLog b/ChangeLog
index d7aaa6e..1071602 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-02         Arnold D. Robbins     <address@hidden>
+
+       * dfa.c (add_utf8_anychar): Minor change in declaration of
+       utf8_classes to keep Tiny CC happy.  Also syncs with grep.
+       * dfa.h: Sync with grep (update copyright year).
+
 2015-12-27         Arnold D. Robbins     <address@hidden>
 
        * awkgram.y (mk_condition): Revise to correctly handle
diff --git a/dfa.c b/dfa.c
index 6be2102..76d3fab 100644
--- a/dfa.c
+++ b/dfa.c
@@ -1,5 +1,5 @@
 /* dfa.c - deterministic extended regexp routines for GNU
-   Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2015 Free Software
+   Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2016 Free Software
    Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -1706,7 +1706,7 @@ addtok_wc (wint_t wc)
 static void
 add_utf8_anychar (void)
 {
-  static const charclass utf8_classes[5] = {
+  static charclass const utf8_classes[5] = {
     /* 80-bf: non-leading bytes.  */
     {0, 0, 0, 0, CHARCLASS_WORD_MASK, CHARCLASS_WORD_MASK, 0, 0},
 
diff --git a/dfa.h b/dfa.h
index 4060dfa..18be7f5 100644
--- a/dfa.h
+++ b/dfa.h
@@ -1,5 +1,5 @@
 /* dfa.h - declarations for GNU deterministic regexp compiler
-   Copyright (C) 1988, 1998, 2007, 2009-2015 Free Software Foundation, Inc.
+   Copyright (C) 1988, 1998, 2007, 2009-2016 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by

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

Summary of changes:
 ChangeLog |    6 ++++++
 dfa.c     |    4 ++--
 dfa.h     |    2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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