|
From: <ai...@us...> - 2009-11-23 05:29:45
|
Revision: 10623
http://plplot.svn.sourceforge.net/plplot/?rev=10623&view=rev
Author: airwin
Date: 2009-11-23 05:29:30 +0000 (Mon, 23 Nov 2009)
Log Message:
-----------
Disallow momentary change to symbol font for PLplot escape
sequences (Hershey, hexadecimal, and Greek) for specifying
unicode.
Modified Paths:
--------------
trunk/src/plcore.c
Modified: trunk/src/plcore.c
===================================================================
--- trunk/src/plcore.c 2009-11-23 05:27:16 UTC (rev 10622)
+++ trunk/src/plcore.c 2009-11-23 05:29:30 UTC (rev 10623)
@@ -33,9 +33,10 @@
*/
#define DEBUG
-/* Allow momentary change to symbol font for certain PLplot-specific
- * escape-sequence encodings for unicode. */
-#define PL_MOMENTARY_SYMBOL_FONT
+/* Disallow momentary change to symbol font for PLplot escape
+ * sequences (Hershey, hexadecimal, and Greek) for specifying
+ * unicode. */
+#undef PL_MOMENTARY_SYMBOL_FONT
#define NEED_PLDEBUG
#include "plcore.h"
@@ -2014,9 +2015,9 @@
plstrm_init();
/* Set title for window to a sensible default if not defined */
- if ( plsc->plwindow == NULL )
+ if ( plsc->plwindow == NULL )
{
- if ( plsc->program )
+ if ( plsc->program )
{
if (( plsc->plwindow = (char *) malloc((size_t) ( 1 + strlen( plsc->program )) * sizeof ( char ))) == NULL )
{
@@ -2033,7 +2034,7 @@
strcpy( plsc->plwindow, "PLplot" );
}
}
-
+
/* Initialize device & first page */
plP_init();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|