summaryrefslogtreecommitdiffstats
path: root/generic/tclGetDate.y
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-09 19:43:38 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-09 19:43:38 (GMT)
commit1f2c3cb141703d6795e040e3a5dbf59da362b6e9 (patch)
tree120d1af971b225719e49296ecb5bd696da72aae8 /generic/tclGetDate.y
parent398efeba2dbc75beb921548c7668531e122af18d (diff)
downloadtcl-1f2c3cb141703d6795e040e3a5dbf59da362b6e9.zip
tcl-1f2c3cb141703d6795e040e3a5dbf59da362b6e9.tar.gz
tcl-1f2c3cb141703d6795e040e3a5dbf59da362b6e9.tar.bz2
isspace -> TclIsSpaceProc in various places.
Re-generate tclDate.c with Bision 3.1
Diffstat (limited to 'generic/tclGetDate.y')
-rw-r--r--generic/tclGetDate.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y
index da4c3fd..9c67227 100644
--- a/generic/tclGetDate.y
+++ b/generic/tclGetDate.y
@@ -897,7 +897,7 @@ TclDatelex(
location->first_column = yyInput - info->dateStart;
for ( ; ; ) {
- while (isspace(UCHAR(*yyInput))) {
+ while (TclIsSpaceProc(UCHAR(*yyInput))) {
yyInput++;
}