diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | dfa.c | 4 | ||||
-rw-r--r-- | dfa.h | 2 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2016-01-02 Arnold D. Robbins <arnold@skeeve.com> + + * 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 <arnold@skeeve.com> * awkgram.y (mk_condition): Revise to correctly handle @@ -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}, @@ -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 |