From 0a5477b448e6b62bcedc1803e531ec7686eea48d Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sat, 4 Jun 2022 15:07:01 +0200 Subject: [PATCH] Make skkdic-convert replacements literal * lisp/international/ja-dic-cnv.el (skkdic-convert): The replacement is literal and fixed-case. (The build on EMBA is failing mysteriously with "Match data clobbered by buffer modification hooks", so this is mainly a stab in the dark at fixing that, but it's also generally correct.) --- lisp/international/ja-dic-cnv.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/international/ja-dic-cnv.el b/lisp/international/ja-dic-cnv.el index 704f1a1ae62..7f7c0261dca 100644 --- a/lisp/international/ja-dic-cnv.el +++ b/lisp/international/ja-dic-cnv.el @@ -335,7 +335,7 @@ Saves the output as `ja-dic-filename', in directory DIRNAME (if specified)." (insert-file-contents (expand-file-name filename))) (re-search-forward "^[^;]") (while (re-search-forward ";[^\n/]*/" nil t) - (replace-match "/"))) + (replace-match "/" t t))) ;; Setup and generate the header part of working buffer. (with-current-buffer buf (erase-buffer) -- 2.39.2