diff options
author | andreas_kupries <akupries@shaw.ca> | 2004-11-26 20:02:27 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2004-11-26 20:02:27 (GMT) |
commit | a1853b050afd6f8375092b83a28358f9f9c8a6eb (patch) | |
tree | bb905681439c1708afce4098c8decfd9e6a59ea8 | |
parent | df25f39c3d46ecfc5cc194ace2ad37f6e437395f (diff) | |
download | tcl-a1853b050afd6f8375092b83a28358f9f9c8a6eb.zip tcl-a1853b050afd6f8375092b83a28358f9f9c8a6eb.tar.gz tcl-a1853b050afd6f8375092b83a28358f9f9c8a6eb.tar.bz2 |
* win/tclWinDde.c (ExecuteRemoteObject): Removed bogus semicolon
found at the end of the header for the function definition,
terminating it early and preventing a compile. This is likely a
fix for '2004-11-25 Donal'. I have to conclude that it is also
unknown if the other changes to this file actually pass the
testsuite. Running testsuite ... They don't. winDde-6.1
fails. This is only a message discrepance, i.e. not too
bad. Leaving resolution of that to Pat and Donal.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | win/tclWinDde.c | 4 |
2 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,14 @@ +2004-11-26 Andreas Kupries <andreask@activestate.com> + + * win/tclWinDde.c (ExecuteRemoteObject): Removed bogus semicolon + found at the end of the header for the function definition, + terminating it early and preventing a compile. This is likely a + fix for '2004-11-25 Donal'. I have to conclude that it is also + unknown if the other changes to this file actually pass the + testsuite. Running testsuite ... They don't. winDde-6.1 + fails. This is only a message discrepance, i.e. not too + bad. Leaving resolution of that to Pat and Donal. + 2004-11-26 Don Porter <dgp@users.sourceforge.net> * library/auto.tcl (tcl_findLibrary): Made sure the uniquifying diff --git a/win/tclWinDde.c b/win/tclWinDde.c index a28f7d7..88c889e 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.24 2004/11/25 11:28:22 dkf Exp $ + * RCS: @(#) $Id: tclWinDde.c,v 1.25 2004/11/26 20:02:28 andreas_kupries Exp $ */ #include "tclInt.h" @@ -521,7 +521,7 @@ DeleteProc(clientData) */ static Tcl_Obj * -ExecuteRemoteObject(riPtr, ddeObjectPtr); +ExecuteRemoteObject(riPtr, ddeObjectPtr) RegisteredInterp *riPtr; /* Info about this server. */ Tcl_Obj *ddeObjectPtr; /* The object to execute. */ { |