summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixInit.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-01 11:55:40 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-01 11:55:40 (GMT)
commit74f9c831ac95d109ce2a36f39ee1f6389789bc47 (patch)
treed143605e7972f08cc3bdff1d320ccbe293d9b5f2 /unix/tclUnixInit.c
parenta2d61902c5917155fc102959689720cf55d07895 (diff)
parentb89c01475a4aa977cfa56b2292504c60de9a7427 (diff)
downloadtcl-74f9c831ac95d109ce2a36f39ee1f6389789bc47.zip
tcl-74f9c831ac95d109ce2a36f39ee1f6389789bc47.tar.gz
tcl-74f9c831ac95d109ce2a36f39ee1f6389789bc47.tar.bz2
Merge tip-548
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r--unix/tclUnixInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index b6b66da..004fbff 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -411,7 +411,7 @@ TclpInitPlatform(void)
/*
* In case the initial locale is not "C", ensure that the numeric
* processing is done in "C" locale regardless. This is needed because Tcl
- * relies on routines like strtod, but should not have locale dependent
+ * relies on routines like strtol/strtoul, but should not have locale dependent
* behavior.
*/
@@ -1001,7 +1001,7 @@ TclpFindVariable(
* searches). */
{
int i, result = -1;
- register const char *env, *p1, *p2;
+ const char *env, *p1, *p2;
Tcl_DString envString;
Tcl_DStringInit(&envString);