summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-01-26 17:08:06 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-01-26 17:08:06 (GMT)
commita6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9 (patch)
treefe6b18722418a1781841f55205a83cc15c243c6b /generic/tclInt.h
parentd53b2ae83f6ba7aa37755dda0d38ff034c0c0ebd (diff)
parentfa64afb29a232d853b04e8e7bb5ad53c3d02f019 (diff)
downloadtcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.zip
tcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.tar.gz
tcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.tar.bz2
Merge 8.6. Also reduce tclCharTypeTable[] to 256 entries, as this table is always addressed with unsigned chars now.
Eliminate some useless end-of-line spacing that slipped in.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 2fba5bf..e66514d 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3082,8 +3082,8 @@ MODULE_SCOPE void TclInitNotifier(void);
MODULE_SCOPE void TclInitObjSubsystem(void);
MODULE_SCOPE void TclInitSubsystems(void);
MODULE_SCOPE int TclInterpReady(Tcl_Interp *interp);
-MODULE_SCOPE int TclIsSpaceProc(char byte);
-MODULE_SCOPE int TclIsBareword(char byte);
+MODULE_SCOPE int TclIsSpaceProc(int byte);
+MODULE_SCOPE int TclIsBareword(int byte);
MODULE_SCOPE Tcl_Obj * TclJoinPath(int elements, Tcl_Obj * const objv[],
int forceRelative);
MODULE_SCOPE int TclJoinThread(Tcl_ThreadId id, int *result);