diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:17:38 +0300 |
commit | 19954b20017e04cb682c64b2994943d1895c17f5 (patch) | |
tree | 8d31eb6e9888c65d238935a4604f937bf00c1b08 /io.c | |
parent | 115571b256bf9e2db3d5be53719b76ab6e6cf6ea (diff) | |
parent | 23fb6f0d2db3488fa85f6f7c975aba56be81806e (diff) | |
download | egawk-19954b20017e04cb682c64b2994943d1895c17f5.tar.gz egawk-19954b20017e04cb682c64b2994943d1895c17f5.tar.bz2 egawk-19954b20017e04cb682c64b2994943d1895c17f5.zip |
Merge branch 'master' into feature/cmake
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); |