From 0ff57e75cf5847d2cbef97a49badb4cccc618300 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Tue, 5 Jun 2012 18:42:51 +0300 Subject: emacs: only strip "re:" in the beginning of subject Fix notmuch-show-strip-re by matching "re:" only in the beginning of the input string. --- emacs/notmuch-show.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emacs') diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index d318430..36cad93 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -819,7 +819,7 @@ message at DEPTH in the current thread." (make-symbol (concat "notmuch-show-" type))) (defun notmuch-show-strip-re (string) - (replace-regexp-in-string "\\([Rr]e: *\\)+" "" string)) + (replace-regexp-in-string "^\\([Rr]e: *\\)+" "" string)) (defvar notmuch-show-previous-subject "") (make-variable-buffer-local 'notmuch-show-previous-subject) -- cgit v1.2.3