Merge pull request #993 from dzop/master

mu4e: Use re-search-forward to find message signatures
This commit is contained in:
Dirk-Jan C. Binnema 2016-12-28 13:40:56 +02:00 committed by GitHub
commit f49e808160
1 changed files with 1 additions and 1 deletions

View File

@ -1284,7 +1284,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)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;