From 9c884ee49803ec710cc918e371b9fe2724a1580b Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Tue, 27 Dec 2016 12:27:39 -0600 Subject: [PATCH] Use re-search-forward to find message signatures --- mu4e/mu4e-utils.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-utils.el b/mu4e/mu4e-utils.el index 3e42af5d..c24641a4 100644 --- a/mu4e/mu4e-utils.el +++ b/mu4e/mu4e-utils.el @@ -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))))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;