diff options
author | dgp@users.sourceforge.net <dgp> | 2006-03-16 22:51:15 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2006-03-16 22:51:15 (GMT) |
commit | 9368b9887d69e72d08a9979befe4ec963a21bbd3 (patch) | |
tree | 858811264f291018f22f2a98d690fb6f46dd84c3 /generic/tkConsole.c | |
parent | 43c9e07fa5520c85feaaa999ca349fc32bec7674 (diff) | |
download | tk-9368b9887d69e72d08a9979befe4ec963a21bbd3.zip tk-9368b9887d69e72d08a9979befe4ec963a21bbd3.tar.gz tk-9368b9887d69e72d08a9979befe4ec963a21bbd3.tar.bz2 |
corrected silly cut/paste/forget to modify error in the name of the
stderr console channel.
Diffstat (limited to 'generic/tkConsole.c')
-rw-r--r-- | generic/tkConsole.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkConsole.c b/generic/tkConsole.c index db5706e..b3bd182 100644 --- a/generic/tkConsole.c +++ b/generic/tkConsole.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: tkConsole.c,v 1.26 2006/03/16 22:47:52 dgp Exp $ + * RCS: @(#) $Id: tkConsole.c,v 1.27 2006/03/16 22:51:15 dgp Exp $ */ #include "tk.h" @@ -300,7 +300,7 @@ Tk_InitConsoleChannels( data->info = info; data->info->refCount++; data->type = TCL_STDERR; - consoleChannel = Tcl_CreateChannel(&consoleChannelType, "console1", + consoleChannel = Tcl_CreateChannel(&consoleChannelType, "console2", (ClientData) data, TCL_WRITABLE); if (consoleChannel != NULL) { Tcl_SetChannelOption(NULL, consoleChannel, |