diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-23 06:09:14 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-23 06:09:14 +0300 |
commit | f0381a560523ce3559337ae62ca2b2ae4df93fac (patch) | |
tree | 9453c2596a68d11c0c2b52db5b781f7585ae8807 /node.c | |
parent | ba65577ec4dc7ece9772b2756d634aaaa352d504 (diff) | |
parent | 273c35356b59a2d3b989bd568f577aaf800dc4a5 (diff) | |
download | egawk-f0381a560523ce3559337ae62ca2b2ae4df93fac.tar.gz egawk-f0381a560523ce3559337ae62ca2b2ae4df93fac.tar.bz2 egawk-f0381a560523ce3559337ae62ca2b2ae4df93fac.zip |
Merge branch 'master' into feature/typed-regex
Diffstat (limited to 'node.c')
-rw-r--r-- | node.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -752,7 +752,7 @@ str2wstr(NODE *n, size_t **ptr) * stopping early. This is particularly important * for match() where we need to build the indices. */ - if (using_utf8()) { + if (dfa_using_utf8()) { count = 1; wc = 0xFFFD; /* unicode replacement character */ goto set_wc; |