[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-commit] Changes to auctex/tex-jp.el,v
From: |
Masayuki Ataka |
Subject: |
[AUCTeX-commit] Changes to auctex/tex-jp.el,v |
Date: |
Sat, 10 Feb 2007 12:07:49 +0000 |
CVSROOT: /sources/auctex
Module name: auctex
Changes by: Masayuki Ataka <ataka> 07/02/10 12:07:48
Index: tex-jp.el
===================================================================
RCS file: /sources/auctex/auctex/tex-jp.el,v
retrieving revision 5.95
retrieving revision 5.96
diff -u -b -r5.95 -r5.96
--- tex-jp.el 9 Feb 2007 08:00:33 -0000 5.95
+++ tex-jp.el 10 Feb 2007 12:07:48 -0000 5.96
@@ -141,17 +141,17 @@
;; again.
(defcustom TeX-japanese-process-input-coding-system
- (cond ((eq window-system 'w32) 'shift_jis-dos)
- ((eq window-system 'mac) 'shift_jis-mac)
- (t 'euc-jp-dos))
+ (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'shift_jis-dos)
+ ((memq system-type '(mac darwin)) 'shift_jis-mac)
+ (t 'euc-jp-unix))
"TeX-process' coding system with standard input."
:group 'AUCTeX-jp
:type 'coding-system)
(defcustom TeX-japanese-process-output-coding-system
- (cond ((eq window-system 'w32) 'shift_jis-dos)
- ((eq window-system 'mac) 'shift_jis-mac)
- (t 'euc-jp-dos))
+ (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'shift_jis-dos)
+ ((memq system-type '(mac darwin)) 'shift_jis-mac)
+ (t 'euc-jp-unix))
"TeX-process' coding system with standard output."
:group 'AUCTeX-jp
:type 'coding-system)