Module: wine Branch: master Commit: d04d1c17369887c365174c062d2975d957509980 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d04d1c17369887c365174c062d... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Mon Aug 19 17:31:38 2013 -0500 riched20: Use \ulnone instead of \ul0 for no underline. --- dlls/riched20/writer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/riched20/writer.c b/dlls/riched20/writer.c index 6a4538c..ea797fd 100644 --- a/dlls/riched20/writer.c +++ b/dlls/riched20/writer.c @@ -680,7 +680,7 @@ ME_StreamOutRTFCharProps(ME_OutStream *pStream, CHARFORMAT2W *fmt) break; case CFU_UNDERLINENONE: default: - strcat(props, "\\ul0"); + strcat(props, "\\ulnone"); break; } else if (fmt->dwEffects & CFE_UNDERLINE)