diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-16 11:03:05 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-04-16 11:03:05 +0300 |
commit | a750e1f81cb2b153d5e9de5fef03737ab84fdee1 (patch) | |
tree | fbc83a6ea12b0a17e01b7c8a3662d90dc2bdc4d0 | |
parent | 07ec66899460f3a0439dfc6a3c0fd1e12afdb46a (diff) | |
download | egawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.tar.gz egawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.tar.bz2 egawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.zip |
Sync dfa with GNU grep.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | dfa.c | 6 | ||||
-rw-r--r-- | dfa.h | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -1,6 +1,7 @@ 2013-04-16 Arnold D. Robbins <arnold@skeeve.com> * awkgram.c: Regenerated from bison 2.7.1. + * dfa.h, dfa.c: Minor edits to sync with GNU grep. 2013-04-14 Arnold D. Robbins <arnold@skeeve.com> @@ -1,5 +1,5 @@ /* dfa.c - deterministic extended regexp routines for GNU - Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2012 Free Software + Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2013 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -65,8 +65,8 @@ #include "mbsupport.h" /* defines MBS_SUPPORT to 1 or 0, as appropriate */ #if MBS_SUPPORT /* We can handle multibyte strings. */ -#include <wchar.h> -#include <wctype.h> +# include <wchar.h> +# include <wctype.h> #endif #ifdef GAWK @@ -1,5 +1,5 @@ /* dfa.h - declarations for GNU deterministic regexp compiler - Copyright (C) 1988, 1998, 2007, 2009-2012 Free Software Foundation, Inc. + Copyright (C) 1988, 1998, 2007, 2009-2013 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 |