Mercurial > emacs
changeset 88753:444ef6485085
(quail-update-leim-list-file): Force
writing the file by iso-2022-7bit.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 12 Jun 2002 00:49:41 +0000 |
parents | 1aeb58b4f1e1 |
children | d4acd0fec14c |
files | lisp/international/quail.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/quail.el Wed Jun 12 00:16:54 2002 +0000 +++ b/lisp/international/quail.el Wed Jun 12 00:49:41 2002 +0000 @@ -2816,8 +2816,8 @@ ;; At last, write out LEIM list file. (with-current-buffer list-buf - (setq buffer-file-coding-system 'iso-2022-7bit) - (save-buffer 0)) + (let ((coding-system-for-write 'iso-2022-7bit)) + (save-buffer 0))) (kill-buffer list-buf) (message "Updating %s ... done" leim-list)))