update.
[elisp/apel.git] / emu-e20.el
1 ;;; emu-e20.el --- emu API implementation for Emacs 20.1 and 20.2
2
3 ;; Copyright (C) 1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, Mule
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 Emacs 20.1 and 20.2.
28
29 ;;; Code:
30
31 (require 'emu-e19)
32
33 (defun fontset-pixel-size (fontset)
34   (let* ((info (fontset-info fontset))
35          (height (aref info 1))
36          )
37     (cond ((> height 0) height)
38           ((string-match "-\\([0-9]+\\)-" fontset)
39            (string-to-number
40             (substring fontset (match-beginning 1)(match-end 1))
41             )
42            )
43           (t 0)
44           )))
45
46 (if (and (fboundp 'set-buffer-multibyte)
47          (subrp (symbol-function 'set-buffer-multibyte)))
48     (require 'emu-e20_3) ; for Emacs 20.3
49   (require 'emu-e20_2) ; for Emacs 20.1 and 20.2
50   )
51
52
53 ;;; @ character set
54 ;;;
55
56 ;; (defalias 'charset-columns 'charset-width)
57
58 (defun find-non-ascii-charset-string (string)
59   "Return a list of charsets in the STRING except ascii."
60   (delq 'ascii (find-charset-string string))
61   )
62
63 (defun find-non-ascii-charset-region (start end)
64   "Return a list of charsets except ascii
65 in the region between START and END."
66   (delq 'ascii (find-charset-string (buffer-substring start end)))
67   )
68
69
70 ;;; @ coding system
71 ;;;
72
73 (defsubst-maybe find-coding-system (obj)
74   "Return OBJ if it is a coding-system."
75   (if (coding-system-p obj)
76       obj))
77
78 (defalias 'set-process-input-coding-system 'set-process-coding-system)
79
80
81 ;;; @ binary access
82 ;;;
83
84 (defun insert-file-contents-as-binary (filename
85                                        &optional visit beg end replace)
86   "Like `insert-file-contents', q.v., but don't code and format conversion.
87 Like `insert-file-contents-literary', but it allows find-file-hooks,
88 automatic uncompression, etc.
89
90 Namely this function ensures that only format decoding and character
91 code conversion will not take place."
92   (let ((flag enable-multibyte-characters)
93         (coding-system-for-read 'binary)
94         format-alist)
95     (insert-file-contents filename visit beg end replace)
96     (set-buffer-multibyte flag)
97     ))
98
99 (defalias 'insert-binary-file-contents 'insert-file-contents-as-binary)
100 (make-obsolete 'insert-binary-file-contents 'insert-file-contents-as-binary)
101
102 (defalias 'insert-binary-file-contents-literally
103   'insert-file-contents-literally)
104
105
106 ;;; @ MIME charset
107 ;;;
108
109 (defsubst encode-mime-charset-region (start end charset)
110   "Encode the text between START and END as MIME CHARSET."
111   (let (cs)
112     (if (and enable-multibyte-characters
113              (setq cs (mime-charset-to-coding-system charset)))
114         (encode-coding-region start end cs)
115       )))
116
117 (defsubst decode-mime-charset-region (start end charset)
118   "Decode the text between START and END as MIME CHARSET."
119   (let (cs)
120     (if (and enable-multibyte-characters
121              (setq cs (mime-charset-to-coding-system charset)))
122         (decode-coding-region start end cs)
123       )))
124
125 (defsubst encode-mime-charset-string (string charset)
126   "Encode the STRING as MIME CHARSET."
127   (let (cs)
128     (if (and enable-multibyte-characters
129              (setq cs (mime-charset-to-coding-system charset)))
130         (encode-coding-string string cs)
131       string)))
132
133 (defsubst decode-mime-charset-string (string charset)
134   "Decode the STRING as MIME CHARSET."
135   (let (cs)
136     (if (and enable-multibyte-characters
137              (setq cs (mime-charset-to-coding-system charset)))
138         (decode-coding-string string cs)
139       string)))
140
141
142 (defvar charsets-mime-charset-alist
143   '(((ascii)                                            . us-ascii)
144     ((ascii latin-iso8859-1)                            . iso-8859-1)
145     ((ascii latin-iso8859-2)                            . iso-8859-2)
146     ((ascii latin-iso8859-3)                            . iso-8859-3)
147     ((ascii latin-iso8859-4)                            . iso-8859-4)
148 ;;; ((ascii cyrillic-iso8859-5)                         . iso-8859-5)
149     ((ascii cyrillic-iso8859-5)                         . koi8-r)
150     ((ascii arabic-iso8859-6)                           . iso-8859-6)
151     ((ascii greek-iso8859-7)                            . iso-8859-7)
152     ((ascii hebrew-iso8859-8)                           . iso-8859-8)
153     ((ascii latin-iso8859-9)                            . iso-8859-9)
154     ((ascii latin-jisx0201
155             japanese-jisx0208-1978 japanese-jisx0208)   . iso-2022-jp)
156     ((ascii latin-jisx0201
157             katakana-jisx0201 japanese-jisx0208)        . shift_jis)
158     ((ascii korean-ksc5601)                             . euc-kr)
159     ((ascii chinese-gb2312)                             . cn-gb-2312)
160     ((ascii chinese-big5-1 chinese-big5-2)              . cn-big5)
161     ((ascii latin-iso8859-1 greek-iso8859-7
162             latin-jisx0201 japanese-jisx0208-1978
163             chinese-gb2312 japanese-jisx0208
164             korean-ksc5601 japanese-jisx0212)           . iso-2022-jp-2)
165     ((ascii latin-iso8859-1 greek-iso8859-7
166             latin-jisx0201 japanese-jisx0208-1978
167             chinese-gb2312 japanese-jisx0208
168             korean-ksc5601 japanese-jisx0212
169             chinese-cns11643-1 chinese-cns11643-2)      . iso-2022-int-1)
170     ((ascii latin-iso8859-1 latin-iso8859-2
171             cyrillic-iso8859-5 greek-iso8859-7
172             latin-jisx0201 japanese-jisx0208-1978
173             chinese-gb2312 japanese-jisx0208
174             korean-ksc5601 japanese-jisx0212
175             chinese-cns11643-1 chinese-cns11643-2
176             chinese-cns11643-3 chinese-cns11643-4
177             chinese-cns11643-5 chinese-cns11643-6
178             chinese-cns11643-7)                         . iso-2022-int-1)
179     ))
180
181
182 ;;; @ character
183 ;;;
184
185 ;;; @@ Mule emulating aliases
186 ;;;
187 ;;; You should not use them.
188
189 (defun char-category (character)
190   "Return string of category mnemonics for CHAR in TABLE.
191 CHAR can be any multilingual character
192 TABLE defaults to the current buffer's category table."
193   (category-set-mnemonics (char-category-set character))
194   )
195
196
197 ;;; @ end
198 ;;;
199
200 (require 'emu-20)
201
202 (provide 'emu-e20)
203
204 ;;; emu-e20.el ends here