diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-01-02 19:40:51 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-01-02 19:40:51 +0200 |
commit | 640d55ecdaced9e826a95a0bce4c65a3e5965cae (patch) | |
tree | f7c3f9b6ebf17741f70aa3b54fa74882429f986f /dfa.c | |
parent | 0bf047964956e90481de3941768937c4318db948 (diff) | |
download | egawk-640d55ecdaced9e826a95a0bce4c65a3e5965cae.tar.gz egawk-640d55ecdaced9e826a95a0bce4c65a3e5965cae.tar.bz2 egawk-640d55ecdaced9e826a95a0bce4c65a3e5965cae.zip |
Minor fix in dfa.c. Sync dfa with grep.
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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}, |