Skip to content

Commit

Permalink
When re-tagging, force `replace-match' to preserve case
Browse files Browse the repository at this point in the history
Sets the second parameter to `replace-match' to t, thus forcing it to
not attempt to auto-adjust the case of any tags.
  • Loading branch information
creichen committed Nov 12, 2023
1 parent a720c9c commit 490dc88
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 490dc88

Please sign in to comment.