diff options
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index 847a240..8de3e7d 100644 --- a/generic/tclCompExpr.c +++ b/generic/tclCompExpr.c @@ -2148,7 +2148,7 @@ ParseLexeme( if (!TclIsBareword(*start) || *start == '_') { size_t scanned; - if (TclUCS4Complete(start, numBytes)) { + if (Tcl_UtfCharComplete(start, numBytes)) { scanned = TclUtfToUCS4(start, &ch); } else { char utfBytes[8]; |