diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-12-01 13:56:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-12-01 13:56:50 +0200 |
commit | fb44529bfa05b9c05cc2edd49566db1b3a37ca54 (patch) | |
tree | 4bf738ec4099eee1dbb0619c044923e88dba8017 /support/regcomp.c | |
parent | ac018ace5fc53299a91d7dcc3e442ef017f4c3af (diff) | |
download | egawk-fb44529bfa05b9c05cc2edd49566db1b3a37ca54.tar.gz egawk-fb44529bfa05b9c05cc2edd49566db1b3a37ca54.tar.bz2 egawk-fb44529bfa05b9c05cc2edd49566db1b3a37ca54.zip |
Small updates in support routines.
Diffstat (limited to 'support/regcomp.c')
-rw-r--r-- | support/regcomp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/regcomp.c b/support/regcomp.c index 2b662edb..4fca1108 100644 --- a/support/regcomp.c +++ b/support/regcomp.c @@ -999,9 +999,9 @@ init_word_char (re_dfa_t *dfa) return; } } -#endif general_case: +#endif for (; i < BITSET_WORDS; ++i) for (int j = 0; j < BITSET_WORD_BITS; ++j, ++ch) if (isalnum (ch) || ch == '_') |