From: <ai...@us...> - 2009-05-03 00:59:43
|
Revision: 9887 http://plplot.svn.sourceforge.net/plplot/?rev=9887&view=rev Author: airwin Date: 2009-05-03 00:59:42 +0000 (Sun, 03 May 2009) Log Message: ----------- Exclude example 31 from this script since it does not work well under plserver and for that reason x31.tcl is normally not copied to the tk directory. Modified Paths: -------------- trunk/examples/tk/tkdemos.tcl Modified: trunk/examples/tk/tkdemos.tcl =================================================================== --- trunk/examples/tk/tkdemos.tcl 2009-05-03 00:23:09 UTC (rev 9886) +++ trunk/examples/tk/tkdemos.tcl 2009-05-03 00:59:42 UTC (rev 9887) @@ -21,7 +21,9 @@ plxframe .plw pack append . .plw {left expand fill} -for {set i 1} {$i <= 31} {incr i} { +# Exclude 31 because it does not work well in this context and because +# the required x31.tcl is normally not copied to the tk directory in any case. +for {set i 1} {$i <= 30} {incr i} { set demo x[format "%02d" $i] source $demo.tcl proc $i {} "$demo .plw.plwin" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |