summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 11c9ec8..780ea30 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -4472,7 +4472,7 @@ MODULE_SCOPE void TclDbInitNewObj(Tcl_Obj *objPtr, const char *file,
Tcl_UtfPrev(src, start))
#define TclUtfNext(src) \
- ((((unsigned char) *(src)) < 0xC0) ? src + 1 : Tcl_UtfNext(src))
+ ((((unsigned char) *(src)) < 0x80) ? src + 1 : Tcl_UtfNext(src))
/*
*----------------------------------------------------------------