diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-02-27 22:54:19 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-02-27 22:54:19 +0200 |
commit | a2353048716e96cc0b3d5c69bc6159902602abe9 (patch) | |
tree | ac2e1198fe29e64cebf918d4acaf89438f8236a2 /dfa.c | |
parent | 511ce662d8020896a812290d70458f777b460db9 (diff) | |
download | egawk-a2353048716e96cc0b3d5c69bc6159902602abe9.tar.gz egawk-a2353048716e96cc0b3d5c69bc6159902602abe9.tar.bz2 egawk-a2353048716e96cc0b3d5c69bc6159902602abe9.zip |
Make 'j' tarball for testing.
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -876,7 +876,7 @@ static token parse_bracket_exp (void) { int invert; - int c = 0, c1 = 0, c2 = 0; + int c, c1, c2; charclass ccl; /* Used to warn about [:space:]. @@ -886,8 +886,8 @@ parse_bracket_exp (void) Bit 3 = includes ranges, char/equiv classes or collation elements. */ int colon_warning_state; - wint_t wc = 0; - wint_t wc2 = 0; + wint_t wc; + wint_t wc2; wint_t wc1 = 0; /* Work area to build a mb_char_classes. */ |