Use re-search-forward to find message signatures

This commit is contained in:
Nathaniel Nicandro 2016-12-27 12:27:39 -06:00
parent 30dab7c312
commit 9c884ee498
1 changed files with 1 additions and 1 deletions

View File

@ -1281,7 +1281,7 @@ the view and compose modes."
(save-excursion
;; give the footer a different color...
(goto-char (point-min))
(let ((p (search-forward "^-- *$" nil t)))
(let ((p (re-search-forward "^-- *$" nil t)))
(when p
(add-text-properties p (point-max) '(face mu4e-footer-face)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;