Mercurial > emacs
annotate lisp/international/mule-util.el @ 43683:fc8f970acda0
(mail-recover-1): Increase non-random-len
by 1 since we changed make-auto-save-file-name to add one
fewer character to the buffer name.
(mail-recover): Really show point at the right place
in the *Directory* buffer.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 03 Mar 2002 22:18:12 +0000 |
parents | b029b43b52bb |
children | 05d77f58ead5 8b4e3bbe01d4 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29354
diff
changeset
|
1 ;;; mule-util.el --- utility functions for mulitilingual environment (mule) |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18313
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17052 | 5 |
6 ;; Keywords: mule, multilingual | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
17071 | 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. | |
17052 | 24 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29354
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
29354
diff
changeset
|
26 |
17052 | 27 ;;; Code: |
28 | |
29 ;;; String manipulations while paying attention to multibyte | |
30 ;;; characters. | |
31 | |
32 ;;;###autoload | |
33 (defun string-to-sequence (string type) | |
34 "Convert STRING to a sequence of TYPE which contains characters in STRING. | |
18200
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
35 TYPE should be `list' or `vector'." |
28458 | 36 ;;; (let ((len (length string)) |
37 ;;; (i 0) | |
38 ;;; val) | |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
39 (cond ((eq type 'list) |
28458 | 40 ;; Applicable post-Emacs 20.2 and asymptotically ~10 times |
41 ;; faster than the code below: | |
42 (append string nil)) | |
43 ;;; (setq val (make-list len 0)) | |
44 ;;; (let ((l val)) | |
45 ;;; (while (< i len) | |
46 ;;; (setcar l (aref string i)) | |
47 ;;; (setq l (cdr l) i (1+ i)))))) | |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
48 ((eq type 'vector) |
28458 | 49 ;; As above. |
50 (vconcat string)) | |
51 ;;; (setq val (make-vector len 0)) | |
52 ;;; (while (< i len) | |
53 ;;; (aset val i (aref string i)) | |
54 ;;; (setq i (1+ i)))) | |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
55 (t |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
56 (error "Invalid type: %s" type))) |
28458 | 57 ;;; val) |
58 ) | |
41232
43e756c38f4f
(string-to-sequence): Make it obsolete.
Richard M. Stallman <rms@gnu.org>
parents:
38414
diff
changeset
|
59 (make-obsolete 'string-to-sequence |
43e756c38f4f
(string-to-sequence): Make it obsolete.
Richard M. Stallman <rms@gnu.org>
parents:
38414
diff
changeset
|
60 "Use `string-to-list' or `string-to-vector'" |
43e756c38f4f
(string-to-sequence): Make it obsolete.
Richard M. Stallman <rms@gnu.org>
parents:
38414
diff
changeset
|
61 "21.3") |
17052 | 62 |
63 ;;;###autoload | |
64 (defsubst string-to-list (string) | |
65 "Return a list of characters in STRING." | |
41232
43e756c38f4f
(string-to-sequence): Make it obsolete.
Richard M. Stallman <rms@gnu.org>
parents:
38414
diff
changeset
|
66 (append string nil)) |
17052 | 67 |
68 ;;;###autoload | |
69 (defsubst string-to-vector (string) | |
70 "Return a vector of characters in STRING." | |
41232
43e756c38f4f
(string-to-sequence): Make it obsolete.
Richard M. Stallman <rms@gnu.org>
parents:
38414
diff
changeset
|
71 (vconcat string)) |
17052 | 72 |
73 ;;;###autoload | |
74 (defun store-substring (string idx obj) | |
75 "Embed OBJ (string or character) at index IDX of STRING." | |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
76 (if (integerp obj) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
77 (aset string idx obj) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
78 (let ((len1 (length obj)) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
79 (len2 (length string)) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
80 (i 0)) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
81 (while (< i len1) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
82 (aset string (+ idx i) (aref obj i)) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
83 (setq i (1+ i))))) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
84 string) |
17052 | 85 |
86 ;;;###autoload | |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
87 (defun truncate-string-to-width (str end-column &optional start-column padding) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
88 "Truncate string STR to end at column END-COLUMN. |
26691
1f573e26070a
(truncate-string-to-width): Docsting fixed.
Gerd Moellmann <gerd@gnu.org>
parents:
24866
diff
changeset
|
89 The optional 3rd arg START-COLUMN, if non-nil, specifies |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
90 the starting column; that means to return the characters occupying |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
91 columns START-COLUMN ... END-COLUMN of STR. |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
92 |
26691
1f573e26070a
(truncate-string-to-width): Docsting fixed.
Gerd Moellmann <gerd@gnu.org>
parents:
24866
diff
changeset
|
93 The optional 4th arg PADDING, if non-nil, specifies a padding character |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
94 to add at the end of the result if STR doesn't reach column END-COLUMN, |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
95 or if END-COLUMN comes in the middle of a character in STR. |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
96 PADDING is also added at the beginning of the result |
19928
7e4718c779b2
(truncate-string-to-width): Doc typo fix.
Richard M. Stallman <rms@gnu.org>
parents:
19916
diff
changeset
|
97 if column START-COLUMN appears in the middle of a character in STR. |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
98 |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
99 If PADDING is nil, no padding is added in these cases, so |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
100 the resulting string may be narrower than END-COLUMN." |
17052 | 101 (or start-column |
102 (setq start-column 0)) | |
103 (let ((len (length str)) | |
104 (idx 0) | |
105 (column 0) | |
106 (head-padding "") (tail-padding "") | |
107 ch last-column last-idx from-idx) | |
108 (condition-case nil | |
109 (while (< column start-column) | |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
110 (setq ch (aref str idx) |
17052 | 111 column (+ column (char-width ch)) |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
112 idx (1+ idx))) |
17052 | 113 (args-out-of-range (setq idx len))) |
114 (if (< column start-column) | |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
115 (if padding (make-string end-column padding) "") |
17052 | 116 (if (and padding (> column start-column)) |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
117 (setq head-padding (make-string (- column start-column) padding))) |
17052 | 118 (setq from-idx idx) |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
119 (if (< end-column column) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
120 (setq idx from-idx) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
121 (condition-case nil |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
122 (while (< column end-column) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
123 (setq last-column column |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
124 last-idx idx |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
125 ch (aref str idx) |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
126 column (+ column (char-width ch)) |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
127 idx (1+ idx))) |
19916
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
128 (args-out-of-range (setq idx len))) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
129 (if (> column end-column) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
130 (setq column last-column idx last-idx)) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
131 (if (and padding (< column end-column)) |
f43513081277
(truncate-string-to-width):
Richard M. Stallman <rms@gnu.org>
parents:
19745
diff
changeset
|
132 (setq tail-padding (make-string (- end-column column) padding)))) |
17052 | 133 (setq str (substring str from-idx idx)) |
134 (if padding | |
135 (concat head-padding str tail-padding) | |
136 str)))) | |
137 | |
23196 | 138 ;;; For backward compatibility ... |
17052 | 139 ;;;###autoload |
140 (defalias 'truncate-string 'truncate-string-to-width) | |
29354
4ed4a700358b
Update calls to make-obsolete with a WHEN argument.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29058
diff
changeset
|
141 (make-obsolete 'truncate-string 'truncate-string-to-width "20.1") |
17052 | 142 |
143 ;;; Nested alist handler. Nested alist is alist whose elements are | |
144 ;;; also nested alist. | |
145 | |
146 ;;;###autoload | |
147 (defsubst nested-alist-p (obj) | |
23196 | 148 "Return t if OBJ is a nested alist. |
17052 | 149 |
150 Nested alist is a list of the form (ENTRY . BRANCHES), where ENTRY is | |
151 any Lisp object, and BRANCHES is a list of cons cells of the form | |
152 (KEY-ELEMENT . NESTED-ALIST). | |
153 | |
154 You can use a nested alist to store any Lisp object (ENTRY) for a key | |
155 sequence KEYSEQ, where KEYSEQ is a sequence of KEY-ELEMENT. KEYSEQ | |
156 can be a string, a vector, or a list." | |
157 (and obj (listp obj) (listp (cdr obj)))) | |
158 | |
159 ;;;###autoload | |
160 (defun set-nested-alist (keyseq entry alist &optional len branches) | |
161 "Set ENTRY for KEYSEQ in a nested alist ALIST. | |
23196 | 162 Optional 4th arg LEN non-nil means the first LEN elements in KEYSEQ |
17052 | 163 is considered. |
164 Optional argument BRANCHES if non-nil is branches for a keyseq | |
165 longer than KEYSEQ. | |
166 See the documentation of `nested-alist-p' for more detail." | |
167 (or (nested-alist-p alist) | |
23196 | 168 (error "Invalid argument %s" alist)) |
17052 | 169 (let ((islist (listp keyseq)) |
170 (len (or len (length keyseq))) | |
171 (i 0) | |
172 key-elt slot) | |
173 (while (< i len) | |
174 (if (null (nested-alist-p alist)) | |
175 (error "Keyseq %s is too long for this nested alist" keyseq)) | |
176 (setq key-elt (if islist (nth i keyseq) (aref keyseq i))) | |
177 (setq slot (assoc key-elt (cdr alist))) | |
178 (if (null slot) | |
179 (progn | |
180 (setq slot (cons key-elt (list t))) | |
181 (setcdr alist (cons slot (cdr alist))))) | |
182 (setq alist (cdr slot)) | |
183 (setq i (1+ i))) | |
184 (setcar alist entry) | |
185 (if branches | |
26890
4cd9407a4683
(set-nested-alist): Set BRANCHES (if
Kenichi Handa <handa@m17n.org>
parents:
26691
diff
changeset
|
186 (setcdr (last alist) branches)))) |
17052 | 187 |
188 ;;;###autoload | |
189 (defun lookup-nested-alist (keyseq alist &optional len start nil-for-too-long) | |
190 "Look up key sequence KEYSEQ in nested alist ALIST. Return the definition. | |
191 Optional 1st argument LEN specifies the length of KEYSEQ. | |
192 Optional 2nd argument START specifies index of the starting key. | |
193 The returned value is normally a nested alist of which | |
194 car part is the entry for KEYSEQ. | |
195 If ALIST is not deep enough for KEYSEQ, return number which is | |
196 how many key elements at the front of KEYSEQ it takes | |
197 to reach a leaf in ALIST. | |
198 Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil | |
199 even if ALIST is not deep enough." | |
200 (or (nested-alist-p alist) | |
28458 | 201 (error "Invalid argument %s" alist)) |
17052 | 202 (or len |
203 (setq len (length keyseq))) | |
204 (let ((i (or start 0))) | |
205 (if (catch 'lookup-nested-alist-tag | |
206 (if (listp keyseq) | |
207 (while (< i len) | |
208 (if (setq alist (cdr (assoc (nth i keyseq) (cdr alist)))) | |
209 (setq i (1+ i)) | |
210 (throw 'lookup-nested-alist-tag t)))) | |
211 (while (< i len) | |
212 (if (setq alist (cdr (assoc (aref keyseq i) (cdr alist)))) | |
213 (setq i (1+ i)) | |
214 (throw 'lookup-nested-alist-tag t)))) | |
215 ;; KEYSEQ is too long. | |
216 (if nil-for-too-long nil i) | |
217 alist))) | |
218 | |
18299
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
219 |
17052 | 220 ;; Coding system related functions. |
221 | |
222 ;;;###autoload | |
18200
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
223 (defun coding-system-eol-type-mnemonic (coding-system) |
24866
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
224 "Return the string indicating end-of-line format of CODING-SYSTEM." |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
225 (let* ((eol-type (coding-system-eol-type coding-system)) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
226 (val (cond ((vectorp eol-type) eol-mnemonic-undecided) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
227 ((eq eol-type 0) eol-mnemonic-unix) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
228 ((eq eol-type 1) eol-mnemonic-dos) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
229 ((eq eol-type 2) eol-mnemonic-mac) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
230 (t "-")))) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
231 (if (stringp val) |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
232 val |
84d705e026b4
(coding-system-eol-type-mnemonic):
Kenichi Handa <handa@m17n.org>
parents:
24485
diff
changeset
|
233 (char-to-string val)))) |
18200
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
234 |
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
235 ;;;###autoload |
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
236 (defun coding-system-post-read-conversion (coding-system) |
42049 | 237 "Return the value of CODING-SYSTEM's `post-read-conversion' property." |
20113
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
238 (coding-system-get coding-system 'post-read-conversion)) |
18200
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
239 |
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
240 ;;;###autoload |
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
241 (defun coding-system-pre-write-conversion (coding-system) |
42049 | 242 "Return the value of CODING-SYSTEM's `pre-write-conversion' property." |
20113
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
243 (coding-system-get coding-system 'pre-write-conversion)) |
18200
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
244 |
c913160e34a7
(set-coding-system-alist): Deleted.
Kenichi Handa <handa@m17n.org>
parents:
17092
diff
changeset
|
245 ;;;###autoload |
22126
97cf1cae1971
Change term unification to
Kenichi Handa <handa@m17n.org>
parents:
21554
diff
changeset
|
246 (defun coding-system-translation-table-for-decode (coding-system) |
42049 | 247 "Return the value of CODING-SYSTEM's `translation-table-for-decode' property." |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22126
diff
changeset
|
248 (coding-system-get coding-system 'translation-table-for-decode)) |
19455
7cf3d42a6fd7
(coding-system-unification-table):
Kenichi Handa <handa@m17n.org>
parents:
19264
diff
changeset
|
249 |
7cf3d42a6fd7
(coding-system-unification-table):
Kenichi Handa <handa@m17n.org>
parents:
19264
diff
changeset
|
250 ;;;###autoload |
22126
97cf1cae1971
Change term unification to
Kenichi Handa <handa@m17n.org>
parents:
21554
diff
changeset
|
251 (defun coding-system-translation-table-for-encode (coding-system) |
42049 | 252 "Return the value of CODING-SYSTEM's `translation-table-for-encode' property." |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22126
diff
changeset
|
253 (coding-system-get coding-system 'translation-table-for-encode)) |
17052 | 254 |
18299
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
255 ;;;###autoload |
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
256 (defun coding-system-equal (coding-system-1 coding-system-2) |
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
257 "Return t if and only if CODING-SYSTEM-1 and CODING-SYSTEM-2 are identical. |
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
258 Two coding systems are identical if two symbols are equal |
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
259 or one is an alias of the other." |
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
260 (or (eq coding-system-1 coding-system-2) |
20113
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
261 (and (equal (coding-system-spec coding-system-1) |
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
262 (coding-system-spec coding-system-2)) |
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
263 (let ((eol-type-1 (coding-system-eol-type coding-system-1)) |
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
264 (eol-type-2 (coding-system-eol-type coding-system-2))) |
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
265 (or (eq eol-type-1 eol-type-2) |
00ca5f419c16
(coding-system-base): Moved to
Kenichi Handa <handa@m17n.org>
parents:
19932
diff
changeset
|
266 (and (vectorp eol-type-1) (vectorp eol-type-2))))))) |
18299
c6f35cac24b4
(coding-system-parent): New function.
Kenichi Handa <handa@m17n.org>
parents:
18200
diff
changeset
|
267 |
20162
dc6f12ef4d47
(find-safe-coding-system): New function.
Kenichi Handa <handa@m17n.org>
parents:
20113
diff
changeset
|
268 ;;;###autoload |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
269 (defmacro detect-coding-with-priority (from to priority-list) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
270 "Detect a coding system of the text between FROM and TO with PRIORITY-LIST. |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
271 PRIORITY-LIST is an alist of coding categories vs the corresponding |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
272 coding systems ordered by priority." |
24485
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
273 `(unwind-protect |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
274 (let* ((prio-list ,priority-list) |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
275 (coding-category-list coding-category-list) |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
276 ,@(mapcar (function (lambda (x) (list x x))) |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
277 coding-category-list)) |
29058
39b69af53e85
(detect-coding-with-priority): Use mapc. Remove redundant lambda.
Dave Love <fx@gnu.org>
parents:
28458
diff
changeset
|
278 (mapc (function (lambda (x) (set (car x) (cdr x)))) |
39b69af53e85
(detect-coding-with-priority): Use mapc. Remove redundant lambda.
Dave Love <fx@gnu.org>
parents:
28458
diff
changeset
|
279 prio-list) |
39b69af53e85
(detect-coding-with-priority): Use mapc. Remove redundant lambda.
Dave Love <fx@gnu.org>
parents:
28458
diff
changeset
|
280 (set-coding-priority (mapcar #'car prio-list)) |
24485
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
281 (detect-coding-region ,from ,to)) |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
282 ;; We must restore the internal database. |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
283 (set-coding-priority coding-category-list) |
ab39ea2168e7
(detect-coding-with-priority): Restore the internal database.
Kenichi Handa <handa@m17n.org>
parents:
24346
diff
changeset
|
284 (update-coding-systems-internal))) |
20162
dc6f12ef4d47
(find-safe-coding-system): New function.
Kenichi Handa <handa@m17n.org>
parents:
20113
diff
changeset
|
285 |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
286 ;;;###autoload |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
287 (defun detect-coding-with-language-environment (from to lang-env) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
288 "Detect a coding system of the text between FROM and TO with LANG-ENV. |
23196 | 289 The detection takes into account the coding system priorities for the |
20730
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
290 language environment LANG-ENV." |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
291 (let ((coding-priority (get-language-info lang-env 'coding-priority))) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
292 (if coding-priority |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
293 (detect-coding-with-priority |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
294 from to |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
295 (mapcar (function (lambda (x) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
296 (cons (coding-system-get x 'coding-category) x))) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
297 coding-priority)) |
42d729244a85
(find-safe-coding-system): Moved to
Kenichi Handa <handa@m17n.org>
parents:
20162
diff
changeset
|
298 (detect-coding-region from to)))) |
20162
dc6f12ef4d47
(find-safe-coding-system): New function.
Kenichi Handa <handa@m17n.org>
parents:
20113
diff
changeset
|
299 |
17052 | 300 |
28458 | 301 (provide 'mule-util) |
302 | |
26890
4cd9407a4683
(set-nested-alist): Set BRANCHES (if
Kenichi Handa <handa@m17n.org>
parents:
26691
diff
changeset
|
303 ;;; mule-util.el ends here |