From: Kenichi Handa Date: Sun, 4 Jul 2004 23:22:28 +0000 (+0000) Subject: (decode-coding-inserted-region): Fix previous change. X-Git-Tag: ttn-vms-21-2-B4~5547 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b12e19b2c128c14e823c40b2c9d0038d283c999b;p=emacs.git (decode-coding-inserted-region): Fix previous change. --- diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 2f7101719fa..8b4ba9b2ce3 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -1878,7 +1878,8 @@ of the function `insert-file-contents'." (coding-system-change-text-conversion coding 'raw-text))) (setq coding nil)) (if coding - (decode-coding-region (point-min) (point-max) coding)))))) + (decode-coding-region (point-min) (point-max) coding) + (setq last-coding-system-used coding)))))) (defun make-translation-table (&rest args) "Make a translation table from arguments.