diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 16:50:21 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 16:50:21 (GMT) |
| commit | fa64afb29a232d853b04e8e7bb5ad53c3d02f019 (patch) | |
| tree | 3fff9cc7c897fa0e1aa2cecc65aaf232211dd03b /generic/tclInt.h | |
| parent | 5f4d72886372eacd51d78f6431e812a978dae48f (diff) | |
| download | tcl-fa64afb29a232d853b04e8e7bb5ad53c3d02f019.zip tcl-fa64afb29a232d853b04e8e7bb5ad53c3d02f019.tar.gz tcl-fa64afb29a232d853b04e8e7bb5ad53c3d02f019.tar.bz2 | |
Replace isspace() -> TclIsSpaceProc() _everywhere_.
Change TclIsSpaceProc() and TclIsBareWord so it works with both signed and unsigned characters. Actually, this is not a signature change, as "char" arguments are enlarged to "int" by the C-compiler anyway.
Diffstat (limited to 'generic/tclInt.h')
| -rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 03cb5ae..0b67709 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3025,8 +3025,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); |
