From: <ai...@us...> - 2010-03-04 02:13:43
|
Revision: 10843 http://plplot.svn.sourceforge.net/plplot/?rev=10843&view=rev Author: airwin Date: 2010-03-04 02:13:37 +0000 (Thu, 04 Mar 2010) Log Message: ----------- Found and fixed source of bug 2963021 which was a missing "$w cmd" on the last call to plslabelfunc. Because of this change example 19 can now be tested with all the rest of the standard examples in examples/tk/standard_examples.in. Modified Paths: -------------- trunk/examples/tcl/x19.tcl trunk/examples/tk/standard_examples.in Modified: trunk/examples/tcl/x19.tcl =================================================================== --- trunk/examples/tcl/x19.tcl 2010-03-04 01:08:00 UTC (rev 10842) +++ trunk/examples/tcl/x19.tcl 2010-03-04 02:13:37 UTC (rev 10843) @@ -121,7 +121,7 @@ $w cmd plmap usaglobe $minx $maxx $miny $maxy # Clear the labeling function - plslabelfunc "" + $w cmd plslabelfunc "" # Polar, Northern hemisphere # Note: the first argument now is the name of the procedure Modified: trunk/examples/tk/standard_examples.in =================================================================== --- trunk/examples/tk/standard_examples.in 2010-03-04 01:08:00 UTC (rev 10842) +++ trunk/examples/tk/standard_examples.in 2010-03-04 02:13:37 UTC (rev 10843) @@ -2,7 +2,6 @@ # Run plserver example for standard examples. # Drop examples 14 and 31 because querying for devices does not # seem to work in this context. -# Drop example 19 because of "invalid command name "plslabelfunc" @plserver_LOCATION@ <<EOF source tkdemos.tcl 1 @@ -22,6 +21,7 @@ 16 17 18 +19 20 21 22 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |