aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-08-23 06:05:01 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-08-23 06:05:01 +0300
commit273c35356b59a2d3b989bd568f577aaf800dc4a5 (patch)
tree3bc9b2f5a3c5466f2d436c1029e92cf2f221fb4c /node.c
parent4a920a6b4214dfc118eeeffd28b3dff33127a9b5 (diff)
parent546f826812728eb8a7b9e51408929c7314b92d31 (diff)
downloadegawk-273c35356b59a2d3b989bd568f577aaf800dc4a5.tar.gz
egawk-273c35356b59a2d3b989bd568f577aaf800dc4a5.tar.bz2
egawk-273c35356b59a2d3b989bd568f577aaf800dc4a5.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.c b/node.c
index bb2fe437..c6c9af81 100644
--- a/node.c
+++ b/node.c
@@ -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;