]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/international/ja-dic-cnv.el: Attempt to fix bug#41250
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 6 Oct 2020 13:34:20 +0000 (09:34 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 6 Oct 2020 13:34:20 +0000 (09:34 -0400)
(skkdic-convert): Only bind `coding-system-for-read` where needed.

lisp/international/ja-dic-cnv.el

index f5e70ce7021094c67e83979238dbec45e989c26c..5f645b6e8e4e5ac58bd490769252c452831af9e0 100644 (file)
@@ -329,12 +329,12 @@ Optional argument DIRNAME if specified is the directory name under which
 the generated Emacs Lisp is saved.
 The name of generated file is specified by the variable `ja-dic-filename'."
   (interactive "FSKK dictionary file: ")
-  (let* ((coding-system-for-read 'euc-japan)
-        (skkbuf (get-buffer-create " *skkdic-unannotated*"))
+  (let* ((skkbuf (get-buffer-create " *skkdic-unannotated*"))
         (buf (get-buffer-create "*skkdic-work*")))
     ;; Set skkbuf to an unannotated copy of the dictionary.
     (with-current-buffer skkbuf
-      (insert-file-contents (expand-file-name filename))
+      (let ((coding-system-for-read 'euc-japan))
+        (insert-file-contents (expand-file-name filename)))
       (re-search-forward "^[^;]")
       (while (re-search-forward ";[^\n/]*/" nil t)
        (replace-match "/")))