diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-03-05 20:20:21 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-03-05 20:20:21 +0200 |
commit | 7b77ec860377eafcad05025888721a46b8a7f349 (patch) | |
tree | 2d3176cee22ad946fb4b82e1b8ae40ca656d1a6a /awkgram.c | |
parent | 9b1151d32d047649e2a6a1f601aa8163ebe3e8e9 (diff) | |
parent | 28b143c3a489e2699834812214eeaa6347ac1c01 (diff) | |
download | egawk-7b77ec860377eafcad05025888721a46b8a7f349.tar.gz egawk-7b77ec860377eafcad05025888721a46b8a7f349.tar.bz2 egawk-7b77ec860377eafcad05025888721a46b8a7f349.zip |
Merge branch 'gawk-4.2-stable' (after 4.2.1 release)
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6706,7 +6706,7 @@ static int yylex(void) { static char etoa_xlate[256]; - static int do_etoa_init = 1; + static bool do_etoa_init = true; int tok; if (do_etoa_init) @@ -6719,7 +6719,7 @@ yylex(void) #else # error "An EBCDIC-to-ASCII translation function is needed for this system" #endif - do_etoa_init = 0; + do_etoa_init = false; } tok = yylex_ebcdic(); |