diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-23 06:19:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-06-23 06:19:08 (GMT) |
commit | 1acb4994abf0e6de1d034056a3da0e27878e2df2 (patch) | |
tree | 4b27af631749f79194fc4e53e4677114fcb1419e /generic/tclGetDate.y | |
parent | b63a4731774242ed00993cbd57622507bdb49a0a (diff) | |
parent | 468aa8f8f0e6742baf75035b4ec3bf82ee8cd6d5 (diff) | |
download | tcl-1acb4994abf0e6de1d034056a3da0e27878e2df2.zip tcl-1acb4994abf0e6de1d034056a3da0e27878e2df2.tar.gz tcl-1acb4994abf0e6de1d034056a3da0e27878e2df2.tar.bz2 |
Merge 8.7
Diffstat (limited to 'generic/tclGetDate.y')
-rw-r--r-- | generic/tclGetDate.y | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index d5e7320..c21d908 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -897,7 +897,7 @@ TclDatelex( location->first_column = yyInput - info->dateStart; for ( ; ; ) { - while (TclIsSpaceProc(UCHAR(*yyInput))) { + while (TclIsSpaceProcM(*yyInput)) { yyInput++; } @@ -960,7 +960,7 @@ TclDatelex( int TclClockOldscanObjCmd( - void *dummy, /* Unused */ + TCL_UNUSED(void *), Tcl_Interp *interp, /* Tcl interpreter */ int objc, /* Count of paraneters */ Tcl_Obj *const *objv) /* Parameters */ @@ -970,7 +970,6 @@ TclClockOldscanObjCmd( DateInfo dateInfo; DateInfo* info = &dateInfo; int status; - (void)dummy; if (objc != 5) { Tcl_WrongNumArgs(interp, 1, objv, |