summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2004-07-04 23:22:28 +0000
committerKenichi Handa <handa@m17n.org>2004-07-04 23:22:28 +0000
commitb12e19b2c128c14e823c40b2c9d0038d283c999b (patch)
tree28e2ba5903c1e2ebb549b6c641735e0161f974fd
parent9957c5071b5c328700b5e896417319db0b3b1088 (diff)
downloademacs-b12e19b2c128c14e823c40b2c9d0038d283c999b.tar.gz
emacs-b12e19b2c128c14e823c40b2c9d0038d283c999b.tar.bz2
emacs-b12e19b2c128c14e823c40b2c9d0038d283c999b.zip
(decode-coding-inserted-region): Fix previous change.
-rw-r--r--lisp/international/mule.el3
1 files changed, 2 insertions, 1 deletions
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.