diff options
Diffstat (limited to 'library/demos/floor.tcl')
-rw-r--r-- | library/demos/floor.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/floor.tcl b/library/demos/floor.tcl index 0afb625..2435544 100644 --- a/library/demos/floor.tcl +++ b/library/demos/floor.tcl @@ -3,7 +3,7 @@ # This demonstration script creates a canvas widet that displays the # floorplan for DEC's Western Research Laboratory. # -# RCS: @(#) $Id: floor.tcl,v 1.2 1998/09/14 18:23:28 stanton Exp $ +# RCS: @(#) $Id: floor.tcl,v 1.3 2001/06/14 10:56:58 dkf Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." @@ -94,7 +94,7 @@ proc newRoom w { proc roomChanged {w args} { global currentRoom floorItems colors $w delete highlight - if [catch {set item $floorItems($currentRoom)}] { + if {[catch {set item $floorItems($currentRoom)}]} { return } set new [eval \ |