# HG changeset patch # User Kenichi Handa # Date 1088983348 0 # Node ID 84f77e8cff58b39f23c21bb373c7329d5c84024c # Parent 80c137e51162cdfb40124a7bae7e66656447ca29 (decode-coding-inserted-region): Fix previous change. diff -r 80c137e51162 -r 84f77e8cff58 lisp/international/mule.el --- a/lisp/international/mule.el Sun Jul 04 23:19:15 2004 +0000 +++ b/lisp/international/mule.el Sun Jul 04 23:22:28 2004 +0000 @@ -1878,7 +1878,8 @@ (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.