diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | library/console.tcl | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2001-10-18 Jeff Hobbs <jeffh@ActiveState.com> + + * library/console.tcl (ConsoleOutput): fixed undefined widget + argument. + 2001-10-16 Jeff Hobbs <jeffh@ActiveState.com> * library/xmfbox.tcl: fixed filtering in motif file dialog. diff --git a/library/console.tcl b/library/console.tcl index 6375648..a9ad8a0 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -4,7 +4,7 @@ # can be used by non-unix systems that do not have built-in support # for shells. # -# RCS: @(#) $Id: console.tcl,v 1.13 2001/10/09 23:11:02 hobbs Exp $ +# RCS: @(#) $Id: console.tcl,v 1.14 2001/10/18 20:26:42 hobbs Exp $ # # Copyright (c) 1995-1997 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. @@ -548,9 +548,10 @@ proc ::tk::ConsoleInsert {w s} { # string - The string to be displayed. proc ::tk::ConsoleOutput {dest string} { - .console insert output $string $dest + set w .console + $w insert output $string $dest ::tk::console::ConstrainBuffer $w $::tk::console::maxLines - .console see insert + $w see insert } # ::tk::ConsoleExit -- |