mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 21:40:48 +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
2cd8ea83fe
commit
d223cc666c
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>
|
2010-05-01 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* TextConverters/RTF/RTFProducer.m
|
* TextConverters/RTF/RTFProducer.m
|
||||||
|
|
|
@ -779,7 +779,7 @@
|
||||||
{
|
{
|
||||||
char unicodeCommand[16];
|
char unicodeCommand[16];
|
||||||
|
|
||||||
snprintf(unicodeCommand, 16, "\\'%X ", (short)c);
|
snprintf(unicodeCommand, 16, "\\'%X", (short)c);
|
||||||
unicodeCommand[15] = '\0';
|
unicodeCommand[15] = '\0';
|
||||||
|
|
||||||
[resultData appendBytes: unicodeCommand
|
[resultData appendBytes: unicodeCommand
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue