(charsets-mime-charset-alist): Add 'shift_jis.
[elisp/apel.git] / emu-x20.el
1 ;;; emu-x20.el --- emu API implementation for XEmacs with mule
2
3 ;; Copyright (C) 1994,1995,1996,1997,1998 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, Mule, XEmacs
7
8 ;; This file is part of emu.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;    This module requires XEmacs 20.3-b5 or later with mule.
28
29 ;;; Code:
30
31 ;; (require 'emu-xemacs)
32 ;; (require 'emu-20)
33
34
35 (and (coding-system-property 'iso-2022-jp 'input-charset-conversion)
36      (copy-coding-system 'iso-2022-7bit 'iso-2022-jp))
37
38
39 ;;; @ binary access
40 ;;;
41
42 (defun insert-file-contents-as-binary (filename
43                                        &optional visit beg end replace)
44   "Like `insert-file-contents', q.v., but don't code and format conversion.
45 Like `insert-file-contents-literary', but it allows find-file-hooks,
46 automatic uncompression, etc.
47
48 Namely this function ensures that only format decoding and character
49 code conversion will not take place."
50   (let ((coding-system-for-read 'binary)
51         format-alist)
52     (insert-file-contents filename visit beg end replace)
53     ))
54
55 (define-obsolete-function-alias 'insert-binary-file-contents
56   'insert-file-contents-as-binary)
57
58 (defun insert-binary-file-contents-literally (filename
59                                               &optional visit beg end replace)
60   "Like `insert-file-contents-literally', q.v., but don't code conversion.
61 A buffer may be modified in several ways after reading into the buffer due
62 to advanced Emacs features, such as file-name-handlers, format decoding,
63 find-file-hooks, etc.
64   This function ensures that none of these modifications will take place."
65   (let ((coding-system-for-read 'binary))
66     (insert-file-contents-literally filename visit beg end replace)
67     ))
68
69     
70 ;;; @ MIME charset
71 ;;;
72
73 (defun encode-mime-charset-region (start end charset)
74   "Encode the text between START and END as MIME CHARSET."
75   (let ((cs (mime-charset-to-coding-system charset)))
76     (if cs
77         (encode-coding-region start end cs)
78       )))
79
80 (defun decode-mime-charset-region (start end charset)
81   "Decode the text between START and END as MIME CHARSET."
82   (let ((cs (mime-charset-to-coding-system charset)))
83     (if cs
84         (decode-coding-region start end cs)
85       )))
86
87 (defsubst encode-mime-charset-string (string charset)
88   "Encode the STRING as MIME CHARSET."
89   (let ((cs (mime-charset-to-coding-system charset)))
90     (if cs
91         (encode-coding-string string cs)
92       string)))
93
94 (defsubst decode-mime-charset-string (string charset)
95   "Decode the STRING as MIME CHARSET."
96   (let ((cs (mime-charset-to-coding-system charset)))
97     (if cs
98         (decode-coding-string string cs)
99       string)))
100
101
102 (defvar charsets-mime-charset-alist
103   '(((ascii)                                            . us-ascii)
104     ((ascii latin-iso8859-1)                            . iso-8859-1)
105     ((ascii latin-iso8859-2)                            . iso-8859-2)
106     ((ascii latin-iso8859-3)                            . iso-8859-3)
107     ((ascii latin-iso8859-4)                            . iso-8859-4)
108     ((ascii cyrillic-iso8859-5)                         . iso-8859-5)
109 ;;; ((ascii cyrillic-iso8859-5)                         . koi8-r)
110     ((ascii arabic-iso8859-6)                           . iso-8859-6)
111     ((ascii greek-iso8859-7)                            . iso-8859-7)
112     ((ascii hebrew-iso8859-8)                           . iso-8859-8)
113     ((ascii latin-iso8859-9)                            . iso-8859-9)
114     ((ascii latin-jisx0201
115             japanese-jisx0208-1978 japanese-jisx0208)   . iso-2022-jp)
116     ((ascii latin-jisx0201
117             katakana-jisx0201 japanese-jisx0208)        . shift_jis)
118     ((ascii korean-ksc5601)                             . euc-kr)
119     ((ascii chinese-gb2312)                             . cn-gb-2312)
120     ((ascii chinese-big5-1 chinese-big5-2)              . cn-big5)
121     ((ascii latin-iso8859-1 greek-iso8859-7
122             latin-jisx0201 japanese-jisx0208-1978
123             chinese-gb2312 japanese-jisx0208
124             korean-ksc5601 japanese-jisx0212)           . iso-2022-jp-2)
125     ((ascii latin-iso8859-1 greek-iso8859-7
126             latin-jisx0201 japanese-jisx0208-1978
127             chinese-gb2312 japanese-jisx0208
128             korean-ksc5601 japanese-jisx0212
129             chinese-cns11643-1 chinese-cns11643-2)      . iso-2022-int-1)
130     ((ascii latin-iso8859-1 latin-iso8859-2
131             cyrillic-iso8859-5 greek-iso8859-7
132             latin-jisx0201 japanese-jisx0208-1978
133             chinese-gb2312 japanese-jisx0208
134             korean-ksc5601 japanese-jisx0212
135             chinese-cns11643-1 chinese-cns11643-2
136             chinese-cns11643-3 chinese-cns11643-4
137             chinese-cns11643-5 chinese-cns11643-6
138             chinese-cns11643-7)                         . iso-2022-int-1)
139     ))
140
141 (defun detect-mime-charset-region (start end)
142   "Return MIME charset for region between START and END."
143   (charsets-to-mime-charset (charsets-in-region start end)))
144
145
146 ;;; @ character
147 ;;;
148
149 (defmacro char-next-index (char index)
150   "Return index of character succeeding CHAR whose index is INDEX."
151   `(1+ ,index))
152
153 ;;; @@ Mule emulating aliases
154 ;;;
155 ;;; You should not use them.
156
157 ;;(defalias 'char-leading-char 'char-charset)
158
159 (defun char-category (character)
160   "Return string of category mnemonics for CHAR in TABLE.
161 CHAR can be any multilingual character
162 TABLE defaults to the current buffer's category table."
163   (mapconcat (lambda (chr)
164                (char-to-string (int-char chr))
165                )
166              (char-category-list character)
167              ""))
168
169
170 ;;; @ string
171 ;;;
172
173 (defun string-to-int-list (str)
174   (mapcar #'char-int str)
175   )
176
177
178 ;;; @ end
179 ;;;
180
181 (provide 'emu-x20)
182
183 ;;; emu-x20.el ends here