Skip to content

Commit

Permalink
Merge pull request #2592 from creichen/master
Browse files Browse the repository at this point in the history
When re-tagging, force `replace-match' to preserve case
  • Loading branch information
djcb committed Nov 12, 2023
2 parents a720c9c + 490dc88 commit 90c5d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu4e/mu4e-actions.el
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Otherwise return nil."
(save-excursion
(goto-char (point-min))
(if (re-search-forward regexp nil t)
(replace-match to-string nil nil)))))
(replace-match to-string t nil)))))

(declare-function mu4e--server-add "mu4e-server")
(defun mu4e--refresh-message (path)
Expand Down

0 comments on commit 90c5d85

Please sign in to comment.