diff options
author | das <das> | 2005-06-25 03:41:37 (GMT) |
---|---|---|
committer | das <das> | 2005-06-25 03:41:37 (GMT) |
commit | 9b23a01e5dc9b084a053f49182264a3c8bc43328 (patch) | |
tree | 8e15f269f6727db682f4f2a2ac90639fb18cc6b1 | |
parent | 8698d39e4749d276d61a8fb39cd8cf9eba507b24 (diff) | |
download | tk-9b23a01e5dc9b084a053f49182264a3c8bc43328.zip tk-9b23a01e5dc9b084a053f49182264a3c8bc43328.tar.gz tk-9b23a01e5dc9b084a053f49182264a3c8bc43328.tar.bz2 |
* library/demos/menu.tcl: removed errant '}'.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | library/demos/menu.tcl | 3 |
2 files changed, 6 insertions, 3 deletions
@@ -1,7 +1,11 @@ -2005-06-23 Daniel Steffen <das@users.sourceforge.net> +2005-06-25 Daniel Steffen <das@users.sourceforge.net> *** 8.4.11 TAGGED FOR RELEASE *** + * library/demos/menu.tcl: removed errant '}'. + +2005-06-23 Daniel Steffen <das@users.sourceforge.net> + * generic/tkConsole.c: backport fix for bug 756840 & sync whitespace changes from HEAD. diff --git a/library/demos/menu.tcl b/library/demos/menu.tcl index 3eb3c44..4464e9e 100644 --- a/library/demos/menu.tcl +++ b/library/demos/menu.tcl @@ -3,7 +3,7 @@ # This demonstration script creates a window with a bunch of menus # and cascaded menus using menubars. # -# RCS: @(#) $Id: menu.tcl,v 1.4.2.1 2005/01/18 11:51:04 dkf Exp $ +# RCS: @(#) $Id: menu.tcl,v 1.4.2.2 2005/06/25 03:41:39 das Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." @@ -140,7 +140,6 @@ $m entryconfigure "Does almost nothing" -bitmap questhead -compound left \ "The menu entry you invoked displays both a bitmap and a\ text string. Other than this, it is just like any other\ menu entry." {} 0 OK ] -} set m $w.menu.colors $w.menu add cascade -label "Colors" -menu $m -underline 1 |