diff options
Diffstat (limited to 'library/demos/bind.tcl')
-rw-r--r-- | library/demos/bind.tcl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/library/demos/bind.tcl b/library/demos/bind.tcl index 81ad642..5e67834 100644 --- a/library/demos/bind.tcl +++ b/library/demos/bind.tcl @@ -3,12 +3,14 @@ # This demonstration script creates a text widget with bindings set # up for hypertext-like effects. # -# RCS: @(#) $Id: bind.tcl,v 1.4 2003/11/03 15:31:18 dkf Exp $ +# RCS: @(#) $Id: bind.tcl,v 1.5 2004/12/21 11:56:35 dkf Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." } +package require Tk + set w .bind catch {destroy $w} toplevel $w |