From: <hba...@us...> - 2009-04-10 02:22:11
|
Revision: 9798 http://plplot.svn.sourceforge.net/plplot/?rev=9798&view=rev Author: hbabcock Date: 2009-04-10 01:46:03 +0000 (Fri, 10 Apr 2009) Log Message: ----------- Fixed a bug in the new unicode text handling. We were trying to look up the unicode equivalent of a unicode character in the hershey_to_unicode_lookup_table. Modified Paths: -------------- trunk/src/plcore.c Modified: trunk/src/plcore.c =================================================================== --- trunk/src/plcore.c 2009-04-08 19:31:08 UTC (rev 9797) +++ trunk/src/plcore.c 2009-04-10 01:46:03 UTC (rev 9798) @@ -615,8 +615,7 @@ args.n_fci = fci; args.n_ctrl_char = PLTEXT_FONTCHANGE; plP_esc(PLESC_CONTROL_CHAR, &args); - args.n_char = \ - (PLUNICODE)hershey_to_unicode_lookup_table[idx].Unicode; + args.n_char = code; plP_esc(PLESC_TEXT_CHAR, &args); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |