diff --git a/ChangeLog b/ChangeLog index 2af937fa9..0d9c13bd6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-05-02 Fred Kiefer + + * TextConverters/RTF/RTFProducer.m (-_stringWithRTFCharacters:): + Remove extra space after \'xx characters accidentially introduced + with last change. + 2010-05-01 Fred Kiefer * TextConverters/RTF/RTFProducer.m diff --git a/TextConverters/RTF/RTFProducer.m b/TextConverters/RTF/RTFProducer.m index 04e1b2c9d..a68864f6d 100644 --- a/TextConverters/RTF/RTFProducer.m +++ b/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