Mercurial > emacs
annotate lisp/composite.el @ 89365:110a171821db
(encode_char): Fix handling of methods SUBSET and SUPERSET.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 11 Jan 2003 03:38:05 +0000 |
parents | 2cf77d6e4261 |
children | 2f877ed80fa6 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
1 ;;; composite.el --- support character composition |
26880 | 2 |
3 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN. | |
4 ;; Licensed to the Free Software Foundation. | |
5 | |
6 ;; Keywords: mule, multilingual, character composition | |
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 | |
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 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
26 |
26880 | 27 ;;; Code: |
28 | |
29 (defconst reference-point-alist | |
30 '((tl . 0) (tc . 1) (tr . 2) | |
31 (Bl . 3) (Bc . 4) (Br . 5) | |
32 (bl . 6) (bc . 7) (br . 8) | |
33 (cl . 9) (cc . 10) (cr . 11) | |
34 (top-left . 0) (top-center . 1) (top-right . 2) | |
35 (base-left . 3) (base-center . 4) (base-right . 5) | |
36 (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) | |
37 (center-left . 9) (center-center . 10) (center-right . 11) | |
38 ;; For backward compatibility... | |
39 (ml . 3) (mc . 10) (mr . 5) | |
40 (mid-left . 3) (mid-center . 10) (mid-right . 5)) | |
41 "Alist of symbols vs integer codes of glyph reference points. | |
42 A glyph reference point symbol is to be used to specify a composition | |
43 rule in COMPONENTS argument to such functions as `compose-region' and | |
44 `make-composition'. | |
45 | |
46 Meanings of glyph reference point codes are as follows: | |
47 | |
48 0----1----2 <---- ascent 0:tl or top-left | |
49 | | 1:tc or top-center | |
50 | | 2:tr or top-right | |
51 | | 3:Bl or base-left 9:cl or center-left | |
52 9 10 11 <---- center 4:Bc or base-center 10:cc or center-center | |
53 | | 5:Br or base-right 11:cr or center-right | |
54 --3----4----5-- <-- baseline 6:bl or bottom-left | |
55 | | 7:bc or bottom-center | |
56 6----7----8 <---- descent 8:br or bottom-right | |
57 | |
58 Glyph reference point symbols are to be used to specify composition | |
59 rule of the form \(GLOBAL-REF-POINT . NEW-REF-POINT), where | |
60 GLOBAL-REF-POINT is a reference point in the overall glyphs already | |
61 composed, and NEW-REF-POINT is a reference point in the new glyph to | |
62 be added. | |
63 | |
64 For instance, if GLOBAL-REF-POINT is `br' (bottom-right) and | |
37232
cebd635be09b
(reference-point-alist): Doc fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35075
diff
changeset
|
65 NEW-REF-POINT is `tc' (top-center), the overall glyph is updated as |
26880 | 66 follows (the point `*' corresponds to both reference points): |
67 | |
68 +-------+--+ <--- new ascent | |
69 | | | | |
70 | global| | | |
71 | glyph | | | |
72 -- | | |-- <--- baseline \(doesn't change) | |
73 +----+--*--+ | |
74 | | new | | |
75 | |glyph| | |
76 +----+-----+ <--- new descent | |
77 ") | |
78 | |
79 ;; Encode composition rule RULE into an integer value. RULE is a cons | |
80 ;; of global and new reference point symbols. | |
81 ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE | |
82 ;; defined in composite.h. | |
83 | |
84 (defun encode-composition-rule (rule) | |
85 (if (and (integerp rule) (< rule 144)) | |
86 ;; Already encoded. | |
87 rule | |
88 (or (consp rule) | |
89 (error "Invalid composition rule: %S" rule)) | |
90 (let ((gref (car rule)) | |
91 (nref (cdr rule))) | |
92 (or (integerp gref) | |
93 (setq gref (cdr (assq gref reference-point-alist)))) | |
94 (or (integerp nref) | |
95 (setq nref (cdr (assq nref reference-point-alist)))) | |
96 (or (and (>= gref 0) (< gref 12) (>= nref 0) (< nref 12)) | |
97 (error "Invalid composition rule: %S" rule)) | |
98 (+ (* gref 12) nref)))) | |
99 | |
100 ;; Decode encoded composition rule RULE-CODE. The value is a cons of | |
101 ;; global and new reference point symbols. | |
102 ;; This must be compatible with C macro COMPOSITION_DECODE_RULE | |
103 ;; defined in composite.h. | |
104 | |
105 (defun decode-composition-rule (rule-code) | |
106 (or (and (natnump rule-code) (< rule-code 144)) | |
107 (error "Invalid encoded composition rule: %S" rule-code)) | |
108 (let ((gref (car (rassq (/ rule-code 12) reference-point-alist))) | |
109 (nref (car (rassq (% rule-code 12) reference-point-alist)))) | |
110 (or (and gref (symbolp gref) nref (symbolp nref)) | |
111 (error "Invalid composition rule code: %S" rule-code)) | |
112 (cons gref nref))) | |
113 | |
114 ;; Encode composition rules in composition components COMPONENTS. The | |
115 ;; value is a copy of COMPONENTS, where composition rules (cons of | |
116 ;; global and new glyph reference point symbols) are replaced with | |
117 ;; encoded composition rules. Optional 2nd argument NOCOPY non-nil | |
118 ;; means don't make a copy but modify COMPONENTS directly. | |
119 | |
120 (defun encode-composition-components (components &optional nocopy) | |
121 (or nocopy | |
122 (setq components (copy-sequence components))) | |
123 (if (vectorp components) | |
124 (let ((len (length components)) | |
125 (i 1)) | |
126 (while (< i len) | |
127 (aset components i | |
128 (encode-composition-rule (aref components i))) | |
129 (setq i (+ i 2)))) | |
130 (let ((tail (cdr components))) | |
131 (while tail | |
132 (setcar tail | |
133 (encode-composition-rule (car tail))) | |
134 (setq tail (nthcdr 2 tail))))) | |
135 components) | |
136 | |
137 ;; Decode composition rule codes in composition components COMPONENTS. | |
138 ;; The value is a copy of COMPONENTS, where composition rule codes are | |
139 ;; replaced with composition rules (cons of global and new glyph | |
140 ;; reference point symbols). Optional 2nd argument NOCOPY non-nil | |
141 ;; means don't make a copy but modify COMPONENTS directly. | |
142 ;; It is assumed that COMPONENTS is a vector and is for rule-base | |
143 ;; composition, thus (2N+1)th elements are rule codes. | |
144 | |
145 (defun decode-composition-components (components &optional nocopy) | |
146 (or nocopy | |
147 (setq components (copy-sequence components))) | |
148 (let ((len (length components)) | |
149 (i 1)) | |
150 (while (< i len) | |
151 (aset components i | |
152 (decode-composition-rule (aref components i))) | |
153 (setq i (+ i 2)))) | |
154 components) | |
155 | |
156 (defun compose-region (start end &optional components modification-func) | |
157 "Compose characters in the current region. | |
158 | |
159 When called from a program, expects these four arguments. | |
160 | |
161 First two arguments START and END are positions (integers or markers) | |
162 specifying the region. | |
163 | |
164 Optional 3rd argument COMPONENTS, if non-nil, is a character or a | |
165 sequence (vector, list, or string) of integers. | |
166 | |
167 If it is a character, it is an alternate character to display instead | |
168 of the text in the region. | |
169 | |
170 If it is a string, the elements are alternate characters. | |
171 | |
172 If it is a vector or list, it is a sequence of alternate characters and | |
173 composition rules, where (2N)th elements are characters and (2N+1)th | |
174 elements are composition rules to specify how to compose (2N+2)th | |
175 elements with previously composed N glyphs. | |
176 | |
177 A composition rule is a cons of global and new glyph reference point | |
178 symbols. See the documentation of `reference-point-alist' for more | |
179 detail. | |
180 | |
181 Optional 4th argument MODIFICATION-FUNC is a function to call to | |
182 adjust the composition when it gets invalid because of a change of | |
183 text in the composition." | |
184 (interactive "r") | |
185 (let ((modified-p (buffer-modified-p)) | |
186 (buffer-read-only nil)) | |
187 (if (or (vectorp components) (listp components)) | |
188 (setq components (encode-composition-components components))) | |
189 (compose-region-internal start end components modification-func) | |
190 (set-buffer-modified-p modified-p))) | |
191 | |
192 (defun decompose-region (start end) | |
193 "Decompose text in the current region. | |
194 | |
195 When called from a program, expects two arguments, | |
196 positions (integers or markers) specifying the region." | |
197 (interactive "r") | |
198 (let ((modified-p (buffer-modified-p)) | |
199 (buffer-read-only nil)) | |
200 (remove-text-properties start end '(composition nil)) | |
201 (set-buffer-modified-p modified-p))) | |
202 | |
203 (defun compose-string (string &optional start end components modification-func) | |
204 "Compose characters in string STRING. | |
205 | |
88808 | 206 The return value is STRING with the `composition' property put on all |
26880 | 207 the characters in it. |
208 | |
209 Optional 2nd and 3rd arguments START and END specify the range of | |
88808 | 210 STRING to be composed. They default to the beginning and the end of |
26880 | 211 STRING respectively. |
212 | |
213 Optional 4th argument COMPONENTS, if non-nil, is a character or a | |
214 sequence (vector, list, or string) of integers. See the function | |
215 `compose-region' for more detail. | |
216 | |
217 Optional 5th argument MODIFICATION-FUNC is a function to call to | |
218 adjust the composition when it gets invalid because of a change of | |
219 text in the composition." | |
220 (if (or (vectorp components) (listp components)) | |
221 (setq components (encode-composition-components components))) | |
222 (or start (setq start 0)) | |
223 (or end (setq end (length string))) | |
224 (compose-string-internal string start end components modification-func) | |
225 string) | |
226 | |
227 (defun decompose-string (string) | |
228 "Return STRING where `composition' property is removed." | |
229 (remove-text-properties 0 (length string) '(composition nil) string) | |
230 string) | |
231 | |
232 (defun compose-chars (&rest args) | |
233 "Return a string from arguments in which all characters are composed. | |
234 For relative composition, arguments are characters. | |
235 For rule-based composition, Mth \(where M is odd) arguments are | |
236 characters, and Nth \(where N is even) arguments are composition rules. | |
237 A composition rule is a cons of glyph reference points of the form | |
238 \(GLOBAL-REF-POINT . NEW-REF-POINT). See the documentation of | |
239 `reference-point-alist' for more detail." | |
240 (let (str components) | |
241 (if (consp (car (cdr args))) | |
242 ;; Rule-base composition. | |
243 (let ((len (length args)) | |
244 (tail (encode-composition-components args 'nocopy))) | |
245 | |
246 (while tail | |
247 (setq str (cons (car tail) str)) | |
248 (setq tail (nthcdr 2 tail))) | |
249 (setq str (concat (nreverse str)) | |
250 components args)) | |
251 ;; Relative composition. | |
252 (setq str (concat args))) | |
253 (compose-string-internal str 0 (length str) components))) | |
254 | |
255 (defun find-composition (pos &optional limit string detail-p) | |
256 "Return information about a composition at or nearest to buffer position POS. | |
257 | |
258 If the character at POS has `composition' property, the value is a list | |
259 of FROM, TO, and VALID-P. | |
260 | |
261 FROM and TO specify the range of text that has the same `composition' | |
262 property, VALID-P is non-nil if and only if this composition is valid. | |
263 | |
264 If there's no composition at POS, and the optional 2nd argument LIMIT | |
265 is non-nil, search for a composition toward LIMIT. | |
266 | |
267 If no composition is found, return nil. | |
268 | |
269 Optional 3rd argument STRING, if non-nil, is a string to look for a | |
270 composition in; nil means the current buffer. | |
271 | |
272 If a valid composition is found and the optional 4th argument DETAIL-P | |
273 is non-nil, the return value is a list of FROM, TO, COMPONENTS, | |
274 RELATIVE-P, MOD-FUNC, and WIDTH. | |
275 | |
276 COMPONENTS is a vector of integers, the meaning depends on RELATIVE-P. | |
277 | |
278 RELATIVE-P is t if the composition method is relative, else nil. | |
279 | |
280 If RELATIVE-P is t, COMPONENTS is a vector of characters to be | |
281 composed. If RELATIVE-P is nil, COMPONENTS is a vector of characters | |
282 and composition rules as described in `compose-region'. | |
283 | |
284 MOD-FUNC is a modification function of the composition. | |
285 | |
286 WIDTH is a number of columns the composition occupies on the screen." | |
287 (let ((result (find-composition-internal pos limit string detail-p))) | |
288 (if (and detail-p result (nth 2 result) (not (nth 3 result))) | |
289 ;; This is a valid rule-base composition. | |
290 (decode-composition-components (nth 2 result) 'nocopy)) | |
291 result)) | |
292 | |
293 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
294 (defun compose-chars-after (pos &optional limit object) |
26880 | 295 "Compose characters in current buffer after position POS. |
296 | |
297 It looks up the char-table `composition-function-table' (which see) by | |
298 a character after POS. If non-nil value is found, the format of the | |
299 value should be an alist of PATTERNs vs FUNCs, where PATTERNs are | |
300 regular expressions and FUNCs are functions. If the text after POS | |
301 matches one of PATTERNs, call the corresponding FUNC with three | |
302 arguments POS, TO, and PATTERN, where TO is the end position of text | |
303 matching PATTERN, and return what FUNC returns. Otherwise, return | |
304 nil. | |
305 | |
306 FUNC is responsible for composing the text properly. The return value | |
307 is: | |
308 nil -- if no characters were composed. | |
309 CHARS (integer) -- if CHARS characters were composed. | |
310 | |
311 Optional 2nd arg LIMIT, if non-nil, limits the matching of text. | |
312 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
313 Optional 3rd arg OBJECT, if non-nil, is a string that contains the |
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
314 text to compose. In that case, POS and LIMIT index to the string. |
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
315 |
26880 | 316 This function is the default value of `compose-chars-after-function'." |
317 (let ((tail (aref composition-function-table (char-after pos))) | |
318 pattern func result) | |
319 (when tail | |
30485
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
320 (save-match-data |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
321 (save-excursion |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
322 (while (and tail (not func)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
323 (setq pattern (car (car tail)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
324 func (cdr (car tail))) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
325 (goto-char pos) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
326 (if (if limit |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
327 (and (re-search-forward pattern limit t) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
328 (= (match-beginning 0) pos)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
329 (looking-at pattern)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
330 (setq result (funcall func pos (match-end 0) pattern nil)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
331 (setq func nil tail (cdr tail))))))) |
26880 | 332 result)) |
333 | |
334 (defun compose-last-chars (args) | |
335 "Compose last characters. | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
336 The argument is a parameterized event of the form |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
337 \(compose-last-chars N COMPONENTS), |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
338 where N is the number of characters before point to compose, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
339 COMPONENTS, if non-nil, is the same as the argument to `compose-region' |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
340 \(which see). If it is nil, `compose-chars-after' is called, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
341 and that function find a proper rule to compose the target characters. |
26880 | 342 This function is intended to be used from input methods. |
343 The global keymap binds special event `compose-last-chars' to this | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
344 function. Input method may generate an event (compose-last-chars N COMPONENTS) |
26880 | 345 after a sequence character events." |
346 (interactive "e") | |
347 (let ((chars (nth 1 args))) | |
348 (if (and (numberp chars) | |
349 (>= (- (point) (point-min)) chars)) | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
350 (if (nth 2 args) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
351 (compose-region (- (point) chars) (point) (nth 2 args)) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
352 (compose-chars-after (- (point) chars) (point)))))) |
26880 | 353 |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
354 (global-set-key [compose-last-chars] 'compose-last-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
355 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
356 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
357 ;;; Automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
358 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
359 (defvar composition-function-table |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
360 (make-char-table nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
361 "Char table of functions for automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
362 For each character that has to be composed automatically with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
363 preceding and/or following characters, this char table contains |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
364 a function to call to compose that character. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
365 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
366 Each function is called with two arguments, POS and STRING. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
367 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
368 If STRING is nil, POS is a position in the current buffer, and the |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
369 function has to compose a character at POS with surrounding characters |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
370 in the current buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
371 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
372 Otherwise, STRING is a string, and POS is an index to the string. In |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
373 this case, the function has to compose a character at POS with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
374 surrounding characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
375 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
376 See also the command `toggle-auto-composition'.") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
377 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
378 ;; Copied from font-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
379 (eval-when-compile |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
380 ;; |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
381 ;; We don't do this at the top-level as we only use non-autoloaded macros. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
382 (require 'cl) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
383 ;; |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
384 ;; Borrowed from lazy-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
385 ;; We use this to preserve or protect things when modifying text properties. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
386 (defmacro save-buffer-state (varlist &rest body) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
387 "Bind variables according to VARLIST and eval BODY restoring buffer state." |
89307 | 388 `(let* ,(append varlist |
389 '((modified (buffer-modified-p)) (buffer-undo-list t) | |
390 (inhibit-read-only t) (inhibit-point-motion-hooks t) | |
391 (inhibit-modification-hooks t) | |
392 deactivate-mark buffer-file-name buffer-file-truename)) | |
393 ,@body | |
394 (unless modified | |
395 (restore-buffer-modified-p nil)))) | |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
396 (put 'save-buffer-state 'lisp-indent-function 1) |
89307 | 397 ;; Fixme: This makes bootstrapping fails by this error. |
398 ;; Symbol's function definition is void: eval-defun | |
399 ;;(def-edebug-spec save-buffer-state let) | |
400 ) | |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
401 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
402 (defvar auto-composition-chunk-size 500 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
403 "*Automatic composition chunks of this many characters, or smaller.") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
404 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
405 (defun auto-compose-chars (pos string) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
406 "Compose characters after the buffer position POS. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
407 If STRING is non-nil, it is a string, and POS is an index to the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
408 In that case, compose characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
409 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
410 This function is the default value of `auto-composition-function' (which see)." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
411 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
412 (save-excursion |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
413 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
414 (save-match-data |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
415 (let* ((start pos) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
416 (end (if string (length string) (point-max))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
417 (limit (next-single-property-change pos 'auto-composed string |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
418 end)) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
419 (lines 0) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
420 ch func newpos) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
421 (if (> (- limit start) auto-composition-chunk-size) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
422 (setq limit (+ start auto-composition-chunk-size))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
423 (while (and (< pos end) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
424 (setq ch (if string (aref string pos) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
425 (char-after pos))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
426 (or (< pos limit) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
427 (/= ch ?\n))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
428 (setq func (aref composition-function-table ch)) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
429 (if (fboundp func) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
430 (setq newpos (funcall func pos string) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
431 pos (if (and (integerp newpos) (> newpos pos)) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
432 newpos |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
433 (1+ pos))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
434 (setq pos (1+ pos)))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
435 (if (< pos limit) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
436 (setq pos (1+ pos))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
437 (put-text-property start pos 'auto-composed t string))))))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
438 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
439 (setq auto-composition-function 'auto-compose-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
440 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
441 (defun toggle-auto-composition (&optional arg) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
442 "Change whether automatic character composition is enabled in this buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
443 With arg, enable it iff arg is positive." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
444 (interactive "P") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
445 (let ((enable (if (null arg) (not auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
446 (> (prefix-numeric-value arg) 0)))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
447 (if enable |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
448 (kill-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
449 (make-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
450 (setq auto-composition-function nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
451 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
452 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
453 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
454 (decompose-region (point-min) (point-max))))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
455 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
456 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
457 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
458 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
459 (put-text-property (point-min) (point-max) 'auto-composed nil))))) |
26880 | 460 |
461 | |
462 ;;; The following codes are only for backward compatibility with Emacs | |
463 ;;; 20.4 and the earlier. | |
464 | |
465 (defun decompose-composite-char (char &optional type with-composition-rule) | |
466 "Convert CHAR to string. | |
467 This is only for backward compatibility with Emacs 20.4 and the earlier. | |
468 | |
469 If optional 2nd arg TYPE is non-nil, it is `string', `list', or | |
470 `vector'. In this case, CHAR is converted string, list of CHAR, or | |
471 vector of CHAR respectively." | |
472 (cond ((or (null type) (eq type 'string)) (char-to-string char)) | |
473 ((eq type 'list) (list char)) | |
474 (t (vector char)))) | |
475 | |
29521
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
476 (make-obsolete 'decompose-composite-char 'char-to-string "21.1") |
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
477 |
26880 | 478 |
479 ;;; composite.el ends here |