diff options
Diffstat (limited to 'lisp/ledger-fontify.el')
-rw-r--r-- | lisp/ledger-fontify.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ledger-fontify.el b/lisp/ledger-fontify.el index 2d4f850e..076e52b7 100644 --- a/lisp/ledger-fontify.el +++ b/lisp/ledger-fontify.el @@ -46,7 +46,8 @@ (beginning-of-line) (while (< (point) end) (cond ((or (looking-at ledger-xact-start-regex) - (looking-at ledger-posting-regex)) + (looking-at ledger-posting-regex) + (looking-at ledger-recurring-line-regexp)) (ledger-fontify-xact-at (point))) ((looking-at ledger-directive-start-regex) (ledger-fontify-directive-at (point)))) |