diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-23 06:06:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-23 06:06:28 +0300 |
commit | da45e63a2d84938408a990d105d927079256b692 (patch) | |
tree | 375e825330e45e51d329f94ca7e4a2e2f794304f /node.c | |
parent | 6a16b54b2718353694d9398430b192e569bc1742 (diff) | |
parent | 273c35356b59a2d3b989bd568f577aaf800dc4a5 (diff) | |
download | egawk-da45e63a2d84938408a990d105d927079256b692.tar.gz egawk-da45e63a2d84938408a990d105d927079256b692.tar.bz2 egawk-da45e63a2d84938408a990d105d927079256b692.zip |
Merge branch 'master' into feature/nocopy
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; |