diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:24 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:24 +0300 |
commit | 23fb6f0d2db3488fa85f6f7c975aba56be81806e (patch) | |
tree | 7348170b73a3f6ca675fd7e761200f3a84e19b3e /io.c | |
parent | 2baa59b4f9e567dbf15900980d13eb6ab1317fdd (diff) | |
parent | ab74a66c1b92c3d84ce39d764794225acc630a62 (diff) | |
download | egawk-23fb6f0d2db3488fa85f6f7c975aba56be81806e.tar.gz egawk-23fb6f0d2db3488fa85f6f7c975aba56be81806e.tar.bz2 egawk-23fb6f0d2db3488fa85f6f7c975aba56be81806e.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3841,7 +3841,7 @@ set_RS() if (RS->stlen == 0) { RS_is_null = true; matchrec = rsnullscan; - } else if (RS->stlen > 1) { + } else if (RS->stlen > 1 && ! do_traditional) { static bool warned = false; RS_re_yes_case = make_regexp(RS->stptr, RS->stlen, false, true, true); |