From: <ai...@us...> - 2013-11-13 22:07:55
|
Revision: 12693 http://sourceforge.net/p/plplot/code/12693 Author: airwin Date: 2013-11-13 22:07:52 +0000 (Wed, 13 Nov 2013) Log Message: ----------- Fix long-standing bug with tcl examples where superscript/subscript escapes were being ignored in subsequent examples (i.e., example 33) run in the same batch because this example failed (until this fix) to restore the default escape character "#". Modified Paths: -------------- trunk/examples/tcl/x29.tcl Modified: trunk/examples/tcl/x29.tcl =================================================================== --- trunk/examples/tcl/x29.tcl 2013-11-13 19:58:55 UTC (rev 12692) +++ trunk/examples/tcl/x29.tcl 2013-11-13 22:07:52 UTC (rev 12693) @@ -45,6 +45,9 @@ x29_plot4 $w + # Restore escape character back to default so we don't affect + # later plots made after this one. + $w cmd plsesc "#" } # Plot a model diurnal cycle of temperature This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |