summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--win/tclWinDde.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bb0892e..b0b9570 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,7 +3,10 @@
* library/clock.tcl: Corrected the regular expressions that match
a time zone to allow for time zones specified as +HH or -HH.
* tests/clock.test: Added regression test case for the above issue.
- Thanks to Rolf Ade for reporting this issue [http://wiki.tcl.tk/13094]
+ Thanks to Rolf Ade for reporting this issue
+ [http://wiki.tcl.tk/13094]
+ * win/tclWinDde.c (Tcl_DdeObjCmd): Corrected a typo that caused a
+ compilation failure on VC++.
2004-11-29 Andreas Kupries <andreask@activestate.com>
diff --git a/win/tclWinDde.c b/win/tclWinDde.c
index 88c889e..023a037 100644
--- a/win/tclWinDde.c
+++ b/win/tclWinDde.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinDde.c,v 1.25 2004/11/26 20:02:28 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclWinDde.c,v 1.26 2004/11/30 18:40:33 kennykb Exp $
*/
#include "tclInt.h"
@@ -1327,7 +1327,7 @@ Tcl_DdeObjCmd(clientData, interp, objc, objv)
}
}
- switch ((enum DdeSubcommand) index) {
+ switch ((enum DdeSubcommands) index) {
case DDE_SERVERNAME:
serviceName = DdeSetServerName(interp, serviceName, exact, handlerPtr);
if (serviceName != NULL) {