diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-09-01 20:46:12 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-09-01 20:46:12 +0300 |
commit | b02f580f06996bd88f741f9c7330aff79216a169 (patch) | |
tree | 7bf557815e612b7bc1f9ea9cbc2dfc66781e175e /node.c | |
parent | af43bad53b2f05ba0d4403a59433f587a1e32b22 (diff) | |
download | egawk-b02f580f06996bd88f741f9c7330aff79216a169.tar.gz egawk-b02f580f06996bd88f741f9c7330aff79216a169.tar.bz2 egawk-b02f580f06996bd88f741f9c7330aff79216a169.zip |
Merge multithreaded dfa into gawk.
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 (dfa_using_utf8()) { + if (using_utf8()) { count = 1; wc = 0xFFFD; /* unicode replacement character */ goto set_wc; |