(set-buffer-multibyte): New function.
[elisp/apel.git] / emu-latin1.el
1 ;;; emu-latin1.el --- emu module for Emacs 19 and XEmacs without MULE
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: emulation, compatibility, mule, Latin-1
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 ;;; Code:
26
27 ;;; @ buffer representation
28 ;;;
29
30 (defmacro-maybe set-buffer-multibyte (flag)
31   "Set the multibyte flag of the current buffer to FLAG.
32 If FLAG is t, this makes the buffer a multibyte buffer.
33 If FLAG is nil, this makes the buffer a single-byte buffer.
34 The buffer contents remain unchanged as a sequence of bytes
35 but the contents viewed as characters do change.
36 \[Emacs 20.3 emulating macro]"
37   )
38
39
40 ;;; @ character set
41 ;;;
42
43 (put 'ascii 'charset-description "Character set of ASCII")
44 (put 'ascii 'charset-registry "ASCII")
45
46 (put 'latin-iso8859-1 'charset-description "Character set of ISO-8859-1")
47 (put 'latin-iso8859-1 'charset-registry "ISO8859-1")
48
49 (defun charset-description (charset)
50   "Return description of CHARSET."
51   (get charset 'charset-description)
52   )
53
54 (defun charset-registry (charset)
55   "Return registry name of CHARSET."
56   (get charset 'charset-registry)
57   )
58
59 (defun charset-width (charset)
60   "Return number of columns a CHARSET occupies when displayed."
61   1)
62
63 (defun charset-direction (charset)
64   "Return the direction of a character of CHARSET by
65   0 (left-to-right) or 1 (right-to-left)."
66   0)
67
68 (defun find-charset-string (str)
69   "Return a list of charsets in the string."
70   (if (string-match "[\200-\377]" str)
71       '(latin-iso8859-1)
72     ))
73
74 (defalias 'find-non-ascii-charset-string 'find-charset-string)
75
76 (defun find-charset-region (start end)
77   "Return a list of charsets in the region between START and END."
78   (if (save-excursion
79         (goto-char start)
80         (re-search-forward "[\200-\377]" end t)
81         )
82       '(latin-iso8859-1)
83     ))
84
85 (defalias 'find-non-ascii-charset-region 'find-charset-region)
86
87
88 ;;; @ coding-system
89 ;;;
90
91 (defconst *internal* nil)
92 (defconst *ctext* nil)
93 (defconst *noconv* nil)
94
95 (defun decode-coding-string (string coding-system)
96   "Decode the STRING which is encoded in CODING-SYSTEM."
97   string)
98
99 (defun encode-coding-string (string coding-system)
100   "Encode the STRING as CODING-SYSTEM."
101   string)
102
103 (defun decode-coding-region (start end coding-system)
104   "Decode the text between START and END which is encoded in CODING-SYSTEM."
105   0)
106
107 (defun encode-coding-region (start end coding-system)
108   "Encode the text between START and END to CODING-SYSTEM."
109   0)
110
111 (defun detect-coding-region (start end)
112   "Detect coding-system of the text in the region between START and END."
113   )
114
115 (defun set-buffer-file-coding-system (coding-system &optional force)
116   "Set buffer-file-coding-system of the current buffer to CODING-SYSTEM."
117   )
118
119 (defmacro as-binary-process (&rest body)
120   (` (let (selective-display)   ; Disable ^M to nl translation.
121        (,@ body)
122        )))
123
124 (defmacro as-binary-input-file (&rest body)
125   (` (let ((emx-binary-mode t)) ; Stop CRLF to LF conversion in OS/2
126        (,@ body)
127        )))
128
129 (defmacro as-binary-output-file (&rest body)
130   (` (let ((emx-binary-mode t)) ; Stop CRLF to LF conversion in OS/2
131        (,@ body)
132        )))
133
134
135 ;;; @@ for old MULE emulation
136 ;;;
137
138 (defun code-convert-string (str ic oc)
139   "Convert code in STRING from SOURCE code to TARGET code,
140 On successful converion, returns the result string,
141 else returns nil. [emu-latin1.el; old MULE emulating function]"
142   str)
143
144 (defun code-convert-region (beg end ic oc)
145   "Convert code of the text between BEGIN and END from SOURCE
146 to TARGET. On successful conversion returns t,
147 else returns nil. [emu-latin1.el; old MULE emulating function]"
148   t)
149
150
151 ;;; @ binary access
152 ;;;
153
154 (defun insert-file-contents-as-binary (filename
155                                        &optional visit beg end replace)
156   "Like `insert-file-contents', q.v., but don't code and format conversion.
157 Like `insert-file-contents-literary', but it allows find-file-hooks,
158 automatic uncompression, etc.
159
160 Namely this function ensures that only format decoding and character
161 code conversion will not take place."
162   (let ((emx-binary-mode t))
163     (insert-file-contents filename visit beg end replace)
164     ))
165
166 (defalias 'insert-binary-file-contents 'insert-file-contents-as-binary)
167 (make-obsolete 'insert-binary-file-contents 'insert-file-contents-as-binary)
168
169 (defun insert-binary-file-contents-literally (filename
170                                               &optional visit beg end replace)
171   "Like `insert-file-contents-literally', q.v., but don't code conversion.
172 A buffer may be modified in several ways after reading into the buffer due
173 to advanced Emacs features, such as file-name-handlers, format decoding,
174 find-file-hooks, etc.
175   This function ensures that none of these modifications will take place."
176   (let ((emx-binary-mode t))
177     (insert-file-contents-literally filename visit beg end replace)
178     ))
179
180 (defun write-region-as-binary (start end filename
181                                      &optional append visit lockname)
182   "Like `write-region', q.v., but don't code conversion."
183   (let ((emx-binary-mode t))
184     (write-region start end filename append visit lockname)
185     ))
186
187
188 ;;; @ MIME charset
189 ;;;
190
191 (defvar charsets-mime-charset-alist
192   '(((ascii) . us-ascii)))
193
194 (defvar default-mime-charset 'iso-8859-1)
195
196 (defun mime-charset-to-coding-system (charset)
197   (if (stringp charset)
198       (setq charset (intern (downcase charset)))
199     )
200   (and (memq charset (list 'us-ascii default-mime-charset))
201        charset)
202   )
203
204 (defun detect-mime-charset-region (start end)
205   "Return MIME charset for region between START and END."
206   (if (save-excursion
207         (goto-char start)
208         (re-search-forward "[\200-\377]" end t)
209         )
210       default-mime-charset
211     'us-ascii))
212
213 (defun encode-mime-charset-region (start end charset)
214   "Encode the text between START and END as MIME CHARSET."
215   )
216
217 (defun decode-mime-charset-region (start end charset)
218   "Decode the text between START and END as MIME CHARSET."
219   )
220
221 (defun encode-mime-charset-string (string charset)
222   "Encode the STRING as MIME CHARSET."
223   string)
224
225 (defun decode-mime-charset-string (string charset)
226   "Decode the STRING as MIME CHARSET."
227   string)
228
229 (defalias 'write-region-as-mime-charset 'write-region)
230
231
232 ;;; @ character
233 ;;;
234
235 (defun char-charset (char)
236   "Return the character set of char CHAR."
237   (if (< chr 128)
238       'ascii
239     'latin-iso8859-1))
240
241 (defun char-bytes (char)
242   "Return number of bytes a character in CHAR occupies in a buffer."
243   1)
244
245 (defun char-width (char)
246   "Return number of columns a CHAR occupies when displayed."
247   1)
248
249 (defalias 'char-length 'char-bytes)
250
251 (defmacro char-next-index (char index)
252   "Return index of character succeeding CHAR whose index is INDEX."
253   (` (1+ (, index))))
254
255
256 ;;; @ string
257 ;;;
258
259 (defalias 'string-width 'length)
260
261 (defun string-to-char-list (str)
262   (mapcar (function identity) str)
263   )
264
265 (defalias 'string-to-int-list 'string-to-char-list)
266
267 (defalias 'sref 'aref)
268
269 (defun truncate-string (str width &optional start-column)
270   "Truncate STR to fit in WIDTH columns.
271 Optional non-nil arg START-COLUMN specifies the starting column.
272 \[emu-latin1.el; MULE 2.3 emulating function]"
273   (or start-column
274       (setq start-column 0))
275   (substring str start-column width)
276   )
277
278 (defalias 'looking-at-as-unibyte 'looking-at)
279
280 ;;; @@ obsoleted aliases
281 ;;;
282 ;;; You should not use them.
283
284 (defalias 'string-columns 'length)
285 (make-obsolete 'string-columns 'string-width)
286
287
288 ;;; @ end
289 ;;;
290
291 (provide 'emu-latin1)
292
293 ;;; emu-latin1.el ends here