summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
Diffstat (limited to 'unix')
-rw-r--r--unix/configure.in4
-rw-r--r--unix/tcl.m44
2 files changed, 4 insertions, 4 deletions
diff --git a/unix/configure.in b/unix/configure.in
index fd0e84e..92f203b 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -2,12 +2,12 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tcl.h)
-# RCS: @(#) $Id: configure.in,v 1.53 2000/01/12 11:13:55 hobbs Exp $
+# RCS: @(#) $Id: configure.in,v 1.54 2000/01/14 00:20:51 hobbs Exp $
TCL_VERSION=8.3
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=3
-TCL_PATCH_LEVEL="b1"
+TCL_PATCH_LEVEL="b2"
VERSION=${TCL_VERSION}
#------------------------------------------------------------------------
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 91d2141..fc65913 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1585,8 +1585,8 @@ AC_DEFUN(SC_BUGGY_STRTOD, [
if ((term != string) && (term[-1] == 0)) {
exit(1);
}
- value = strtod(string, &term);
- if (term == (string+1)) {
+ value = strtod(spaceString, &term);
+ if (term == (spaceString+1)) {
exit(1);
}
exit(0);