summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-12-04 18:26:31 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-12-04 18:26:31 (GMT)
commitf9fb8c8daf918e57d3a50a0428623a5e5c260e70 (patch)
tree04aa3988f0683b5fd4ff884d7665cdef01b73fd3 /generic/tclInt.h
parent0a2ac311c1e846784b98690d22c678d68ec117ec (diff)
downloadtcl-f9fb8c8daf918e57d3a50a0428623a5e5c260e70.zip
tcl-f9fb8c8daf918e57d3a50a0428623a5e5c260e70.tar.gz
tcl-f9fb8c8daf918e57d3a50a0428623a5e5c260e70.tar.bz2
Stop using isalnum(.). Its results are not portable. Replace with our
own private routine TclIsBareword() that does exactly what we want.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index dd66d76..255ee23 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2608,6 +2608,7 @@ MODULE_SCOPE void TclInitSubsystems(void);
MODULE_SCOPE int TclInterpReady(Tcl_Interp *interp);
MODULE_SCOPE int TclIsLocalScalar(const char *src, int len);
MODULE_SCOPE int TclIsSpaceProc(char byte);
+MODULE_SCOPE int TclIsBareword(char byte);
MODULE_SCOPE int TclJoinThread(Tcl_ThreadId id, int *result);
MODULE_SCOPE void TclLimitRemoveAllHandlers(Tcl_Interp *interp);
MODULE_SCOPE Tcl_Obj * TclLindexList(Tcl_Interp *interp,