From: <sa...@us...> - 2006-08-18 01:55:35
|
Revision: 16824 Author: sadrul Date: 2006-08-17 18:55:26 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16824&view=rev Log Message: ----------- This is better. Modified Paths: -------------- trunk/src/util.c Modified: trunk/src/util.c =================================================================== --- trunk/src/util.c 2006-08-18 00:23:39 UTC (rev 16823) +++ trunk/src/util.c 2006-08-18 01:55:26 UTC (rev 16824) @@ -877,11 +877,11 @@ else if(IS_ENTITY(" ")) pln = " "; else if(IS_ENTITY("©")) - pln = "\251"; + pln = "\302\251"; /* or use g_unichar_to_utf8(0xa9); */ else if(IS_ENTITY(""")) pln = "\""; else if(IS_ENTITY("®")) - pln = "\256"; + pln = "\302\256"; /* or use g_unichar_to_utf8(0xae); */ else if(IS_ENTITY("'")) pln = "\'"; else if(*(text+1) == '#' && (sscanf(text, "&#%u;", £) == 1) && This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |