mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
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:
parent
5359aa0a77
commit
f2c582b9c3
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue