* language/japan-util.el (setup-japanese-environment-internal):

Prefer japanese-iso-8bit if the system-type is usg-unix-v.
This commit is contained in:
Paul Eggert 1999-10-19 07:20:29 +00:00
parent 40c81f74c3
commit ef83dfaf7d

View file

@ -34,9 +34,10 @@
;;;###autoload
(defun setup-japanese-environment-internal ()
(if (eq system-type 'ms-dos)
(prefer-coding-system 'japanese-shift-jis)
(setq default-file-name-coding-system 'japanese-iso-8bit))
(cond ((eq system-type 'ms-dos)
(prefer-coding-system 'japanese-shift-jis))
((eq system-type 'usg-unix-v)
(prefer-coding-system 'japanese-iso-8bit)))
(setq sentence-end-save sentence-end)
(setq sentence-end (concat sentence-end "\\|[$B!#!)!*(B]")))