diff options
author | dgp <dgp@users.sourceforge.net> | 2006-03-16 22:51:15 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-03-16 22:51:15 (GMT) |
commit | 58c3d258aa0068b5b91068e0ecbdb648e279f362 (patch) | |
tree | 858811264f291018f22f2a98d690fb6f46dd84c3 /generic/tkConsole.c | |
parent | 82e0884e485a6303317c05b734ef10e9554d649b (diff) | |
download | tk-58c3d258aa0068b5b91068e0ecbdb648e279f362.zip tk-58c3d258aa0068b5b91068e0ecbdb648e279f362.tar.gz tk-58c3d258aa0068b5b91068e0ecbdb648e279f362.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, |