Skip to content

Commit

Permalink
Fix single-line emails
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Oct 30, 2021
1 parent ba7e8d2 commit 65fedf5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

<!-- markdownlint-disable-file MD024 -->
4 changes: 2 additions & 2 deletions QuoteFixMacro.bas
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 65fedf5

Please sign in to comment.