aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-09-01 20:46:51 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-09-01 20:46:51 +0300
commit0e4da77d0490190e9371d35aa7b5225484369cb1 (patch)
tree9791b1b69963883e9d8496a64ea04e1f74a72405 /node.c
parenta94fdadfd58ce0f4f611911cec3c231f95fad818 (diff)
parentb02f580f06996bd88f741f9c7330aff79216a169 (diff)
downloadegawk-0e4da77d0490190e9371d35aa7b5225484369cb1.tar.gz
egawk-0e4da77d0490190e9371d35aa7b5225484369cb1.tar.bz2
egawk-0e4da77d0490190e9371d35aa7b5225484369cb1.zip
Merge branch 'master' into feature/cmake
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 c6c9af81..bb2fe437 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 (dfa_using_utf8()) {
+ if (using_utf8()) {
count = 1;
wc = 0xFFFD; /* unicode replacement character */
goto set_wc;