diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-21 13:51:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-21 13:51:33 +0000 |
commit | ef0096475288bd6a1a3463d8a437954862e85e66 (patch) | |
tree | ba174c66da4bcaa53a78a7b0d3d522da0d111673 | |
parent | 8d23d76f0d43ca65a3c6a259382d26df567b2356 (diff) |
EOL breaks rtf expressions too
git-svn-id: http://svn.miranda-ng.org/main/trunk@12232 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/TabSRMM/src/msgdlgutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdlgutils.cpp b/plugins/TabSRMM/src/msgdlgutils.cpp index 37cd081c08..ae11b83a27 100644 --- a/plugins/TabSRMM/src/msgdlgutils.cpp +++ b/plugins/TabSRMM/src/msgdlgutils.cpp @@ -955,7 +955,7 @@ BOOL TSAPI DoRtfToTags(const TWindowData *dat, CMString &pszText) }
p++; // skip initial slash
- p += _tcscspn(p, _T(" \\"));
+ p += _tcscspn(p, _T(" \\\n\r"));
if (*p == ' ')
p++;
break;
|