diff options
Diffstat (limited to 'dfa.h')
-rw-r--r-- | dfa.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -3,7 +3,7 @@ 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 - the Free Software Foundation; either version 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -13,7 +13,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ + Foundation, Inc., + 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA */ /* Written June, 1988 by Mike Haertel */ @@ -373,6 +374,10 @@ struct dfa struct dfamust *musts; /* List of strings, at least one of which is known to appear in any r.e. matching the dfa. */ +#ifdef GAWK + int broken; /* True if using a feature where there + are bugs and gawk should use regex. */ +#endif }; /* Some macros for user access to dfa internals. */ |