diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e94837..859e734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed * Empty line is kept after the header for forwarded mails [[#12](https://github.com/macros4outlook/quotefixmacro/pull/12)] +* Single-line emails keep the quoting character in the created reply email ## Version [1.8] - 2021-02-06 @@ -168,3 +169,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). [1.5]: https://github.com/macros4outlook/quotefixmacro/compare/v1.4...v1.5 [1.4]: https://github.com/macros4outlook/quotefixmacro/compare/v1.3...v1.4 [1.3]: https://github.com/macros4outlook/quotefixmacro/compare/v1.2b...v1.3 + + diff --git a/QuoteFixMacro.bas b/QuoteFixMacro.bas index cb81e67..f06c566 100644 --- a/QuoteFixMacro.bas +++ b/QuoteFixMacro.bas @@ -541,7 +541,7 @@ Public Function ReFormatText(ByVal text As String) As String End If Else 'Quote is the last one - just use it - AppendCurLine curLine + FinishBlock lastNesting End If Else @@ -1557,7 +1557,7 @@ Public Function ColorizeMailItem(MyMailItem As MailItem) As String Dim lines() As String lines = Split(rtf, vbCrLf) - + Dim i As Long For i = LBound(lines) To UBound(lines) Dim n As Long