Commit 6f173277 authored by Massimo Del Fedele's avatar Massimo Del Fedele Committed by Alexandre Julliard

riched20: Fix placement of crlf on font table streamout.

parent 7ab6c22f
...@@ -295,10 +295,10 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun, ...@@ -295,10 +295,10 @@ ME_StreamOutRTFFontAndColorTbl(ME_OutStream *pStream, ME_DisplayItem *pFirstRun,
} }
if (!ME_StreamOutRTFText(pStream, table[i].szFaceName, -1)) if (!ME_StreamOutRTFText(pStream, table[i].szFaceName, -1))
return FALSE; return FALSE;
if (!ME_StreamOutPrint(pStream, ";}\r\n")) if (!ME_StreamOutPrint(pStream, ";}"))
return FALSE; return FALSE;
} }
if (!ME_StreamOutPrint(pStream, "}")) if (!ME_StreamOutPrint(pStream, "}\r\n"))
return FALSE; return FALSE;
/* Output colors table if not empty */ /* Output colors table if not empty */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment