diff options
Diffstat (limited to 'macosx/tkMacOSXHLEvents.c')
-rw-r--r-- | macosx/tkMacOSXHLEvents.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/macosx/tkMacOSXHLEvents.c b/macosx/tkMacOSXHLEvents.c index 90821c7..efe42fb 100644 --- a/macosx/tkMacOSXHLEvents.c +++ b/macosx/tkMacOSXHLEvents.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: tkMacOSXHLEvents.c,v 1.6 2003/03/12 05:56:21 wolfsuit Exp $ + * RCS: @(#) $Id: tkMacOSXHLEvents.c,v 1.7 2004/02/16 00:19:42 wolfsuit Exp $ */ #include "tkMacOSXPort.h" @@ -329,10 +329,11 @@ ScriptHandler (const AppleEvent * event, AppleEvent * reply, long handlerRefcon) else { AEGetDescData(&theDesc,data,size); data [ size ] = 0; - for (i=0; i<size; i++) + for (i = 0; i < size; i++) if (data[i] == '\r') data[i] = '\n'; - AEReplaceDescData(theDesc.descriptorType,data,size+1,&theDesc); + AEReplaceDescData(theDesc.descriptorType, data, + size + 1, &theDesc); } Tcl_ExternalToUtfDString(NULL, data, size, &encodedText); |