When re-tagging, force `replace-match' to preserve case

Sets the second parameter to `replace-match' to t, thus forcing it to
not attempt to auto-adjust the case of any tags.
This commit is contained in:
Christoph Reichenbach 2023-11-12 10:51:47 +00:00
parent a720c9cb1c
commit 490dc8869b
1 changed files with 1 additions and 1 deletions

View File

@ -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)