Fix extra space for Umlaut characters in RTF introduced with last

change.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30277 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2010-05-02 09:47:56 +00:00
parent 5359aa0a77
commit f2c582b9c3
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2010-05-02 Fred Kiefer <FredKiefer@gmx.de>
* TextConverters/RTF/RTFProducer.m (-_stringWithRTFCharacters:):
Remove extra space after \'xx characters accidentially introduced
with last change.
2010-05-01 Fred Kiefer <FredKiefer@gmx.de>
* TextConverters/RTF/RTFProducer.m

View file

@ -779,7 +779,7 @@
{
char unicodeCommand[16];
snprintf(unicodeCommand, 16, "\\'%X ", (short)c);
snprintf(unicodeCommand, 16, "\\'%X", (short)c);
unicodeCommand[15] = '\0';
[resultData appendBytes: unicodeCommand