* 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:
parent
40c81f74c3
commit
ef83dfaf7d
1 changed files with 4 additions and 3 deletions
|
@ -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]")))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue