|
From: <arj...@us...> - 2013-01-29 08:37:31
|
Revision: 12285
http://plplot.svn.sourceforge.net/plplot/?rev=12285&view=rev
Author: arjenmarkus
Date: 2013-01-29 08:37:25 +0000 (Tue, 29 Jan 2013)
Log Message:
-----------
Almost trivial change to get rid of the last direct use of interp->result.
Note: not tested because of lack of access to a Linux platform
Modified Paths:
--------------
trunk/bindings/tk/tkMain.c
Modified: trunk/bindings/tk/tkMain.c
===================================================================
--- trunk/bindings/tk/tkMain.c 2013-01-08 05:26:34 UTC (rev 12284)
+++ trunk/bindings/tk/tkMain.c 2013-01-29 08:37:25 UTC (rev 12285)
@@ -599,7 +599,7 @@
{
Tcl_AddErrorInfo( intp,
"\n (script that generates prompt)" );
- fprintf( stderr, "%s\n", intp->result );
+ fprintf( stderr, "%s\n", Tcl_GetStringResult(intp) );
goto defaultPrompt;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|