summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorsuresh <suresh@noemail.net>1998-10-20 17:27:43 (GMT)
committersuresh <suresh@noemail.net>1998-10-20 17:27:43 (GMT)
commit9e192e4573531f8110703fc6cc341e2015fd352d (patch)
tree613d3581c43b0a07376e1889f492783143592c19 /changes
parent4cf0608cf413365b4812be6b9ac1171b8b680f83 (diff)
downloadtcl-9e192e4573531f8110703fc6cc341e2015fd352d.zip
tcl-9e192e4573531f8110703fc6cc341e2015fd352d.tar.gz
tcl-9e192e4573531f8110703fc6cc341e2015fd352d.tar.bz2
On Windows, Added the "debug" element of the tcl_platform array which
indicates that the particular Tcl shell has been compiled with debug information Using "info exists tcl_platform(debug)" a Tcl script can direct the interpreter to load debug versions of DLLs with the load command. FossilOrigin-Name: 519628b6648f80711432c81862846a80e8859bfe
Diffstat (limited to 'changes')
-rw-r--r--changes9
1 files changed, 8 insertions, 1 deletions
diff --git a/changes b/changes
index f305fb9..c8f5ccb 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.26 1998/10/13 20:30:21 rjohnson Exp $
+RCS: @(#) $Id: changes,v 1.27 1998/10/20 17:27:43 suresh Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3636,3 +3636,10 @@ handle some numbers starting with 0. Thanks to Richard Hipp
Tcl_Obj if the list had zero elements (despite what the comments said
it would do). Thanks to Sebastian Wangnick for reporting the
problem. (RJ)
+
+10/20/98 (new feature) Added tcl_platform(debug) element to the
+tcl_platform array on Windows platform. The existence of the debug
+element of the tcl_platform array indicates that the particular Tcl
+shell has been compiled with debug information. Using
+"info exists tcl_platform(debug)" a Tcl script can direct the interpreter
+to load debug versions of DLLs with the load command. (SKS)