clobbering last-coding-system-used during load.
+2006-10-12 Chong Yidong <cyd@stupidchicken.com>
+
+ * international/utf-8.el (utf-translate-cjk-load-tables): Avoid
+ clobbering last-coding-system-used during load.
+
2006-10-12 Carsten Dominik <dominik@science.uva.nl>
* textmodes/reftex-global.el (reftex-create-tags-file): Quote file
;; Here we bind coding-system-for-read to nil so that coding tags
;; in the files are respected even if the files are not yet
;; byte-compiled
- (let ((coding-system-for-read nil))
+ (let ((coding-system-for-read nil)
+ ;; We must avoid clobbering this variable, in case the load
+ ;; files below use different coding systems.
+ (last-coding-system-used last-coding-system-used))
(cond ((string= "Korean" current-language-environment)
(load "subst-jis")
(load "subst-big5")