Mercurial > emacs
annotate src/composite.c @ 89249:c17f4a5216ad
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 28 Oct 2002 20:18:17 +0000 |
parents | a299fdd2a731 |
children | 6ed290fbc678 |
rev | line source |
---|---|
26848 | 1 /* Composite sequence support. |
2 Copyright (C) 1999 Electrotechnical Laboratory, JAPAN. | |
3 Licensed to the Free Software Foundation. | |
38098 | 4 Copyright (C) 2001 Free Software Foundation, Inc. |
88366
97f11940f06a
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41001
diff
changeset
|
5 Copyright (C) 2001, 2002 |
97f11940f06a
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41001
diff
changeset
|
6 National Institute of Advanced Industrial Science and Technology (AIST) |
97f11940f06a
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41001
diff
changeset
|
7 Registration Number H13PRO009 |
26848 | 8 |
9 This file is part of GNU Emacs. | |
10 | |
11 GNU Emacs is free software; you can redistribute it and/or modify | |
12 it under the terms of the GNU General Public License as published by | |
13 the Free Software Foundation; either version 2, or (at your option) | |
14 any later version. | |
15 | |
16 GNU Emacs is distributed in the hope that it will be useful, | |
17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 GNU General Public License for more details. | |
20 | |
21 You should have received a copy of the GNU General Public License | |
22 along with GNU Emacs; see the file COPYING. If not, write to | |
23 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 Boston, MA 02111-1307, USA. */ | |
25 | |
26 #include <config.h> | |
27 #include "lisp.h" | |
28 #include "buffer.h" | |
88366
97f11940f06a
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41001
diff
changeset
|
29 #include "character.h" |
26848 | 30 #include "intervals.h" |
31 | |
32 /* Emacs uses special text property `composition' to support character | |
33 composition. A sequence of characters that have the same (i.e. eq) | |
34 `composition' property value is treated as a single composite | |
35 sequence (we call it just `composition' here after). Characters in | |
36 a composition are all composed somehow on the screen. | |
37 | |
38 The property value has this form when the composition is made: | |
39 ((LENGTH . COMPONENTS) . MODIFICATION-FUNC) | |
40 then turns to this form: | |
41 (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC)) | |
42 when the composition is registered in composition_hash_table and | |
43 composition_table. These rather peculiar structures were designed | |
44 to make it easy to distinguish them quickly (we can do that by | |
45 checking only the first element) and to extract LENGTH (from the | |
46 former form) and COMPOSITION-ID (from the latter form). | |
47 | |
48 We register a composition when it is displayed, or when the width | |
49 is required (for instance, to calculate columns). | |
50 | |
51 LENGTH -- Length of the composition. This information is used to | |
52 check the validity of the composition. | |
53 | |
54 COMPONENTS -- Character, string, vector, list, or nil. | |
55 | |
56 If it is nil, characters in the text are composed relatively | |
57 according to their metrics in font glyphs. | |
58 | |
59 If it is a character or a string, the character or characters | |
60 in the string are composed relatively. | |
61 | |
62 If it is a vector or list of integers, the element is a | |
63 character or an encoded composition rule. The characters are | |
64 composed according to the rules. (2N)th elements are | |
65 characters to be composed and (2N+1)th elements are | |
66 composition rules to tell how to compose (2N+2)th element with | |
67 the previously composed 2N glyphs. | |
68 | |
69 COMPONENTS-VEC -- Vector of integers. In relative composition, the | |
70 elements are characters to be composed. In rule-base | |
71 composition, the elements are characters or encoded | |
72 composition rules. | |
73 | |
74 MODIFICATION-FUNC -- If non nil, it is a function to call when the | |
75 composition gets invalid after a modification in a buffer. If | |
76 it is nil, a function in `composition-function-table' of the | |
77 first character in the sequence is called. | |
78 | |
79 COMPOSITION-ID --Identification number of the composition. It is | |
80 used as an index to composition_table for the composition. | |
81 | |
82 When Emacs has to display a composition or has to know its | |
83 displaying width, the function get_composition_id is called. It | |
84 returns COMPOSITION-ID so that the caller can access the | |
85 information about the composition through composition_table. If a | |
86 COMPOSITION-ID has not yet been assigned to the composition, | |
87 get_composition_id checks the validity of `composition' property, | |
88 and, if valid, assigns a new ID, registers the information in | |
89 composition_hash_table and composition_table, and changes the form | |
90 of the property value. If the property is invalid, return -1 | |
91 without changing the property value. | |
92 | |
93 We use two tables to keep information about composition; | |
94 composition_hash_table and composition_table. | |
95 | |
96 The former is a hash table in which keys are COMPONENTS-VECs and | |
97 values are the corresponding COMPOSITION-IDs. This hash table is | |
98 weak, but as each key (COMPONENTS-VEC) is also kept as a value of | |
99 `composition' property, it won't be collected as garbage until all | |
100 text that have the same COMPONENTS-VEC are deleted. | |
101 | |
102 The latter is a table of pointers to `struct composition' indexed | |
103 by COMPOSITION-ID. This structure keep the other information (see | |
104 composite.h). | |
105 | |
106 In general, a text property holds information about individual | |
107 characters. But, a `composition' property holds information about | |
108 a sequence of characters (in this sense, it is like `intangible' | |
109 property). That means that we should not share the property value | |
110 in adjacent compositions we can't distinguish them if they have the | |
111 same property. So, after any changes, we call | |
112 `update_compositions' and change a property of one of adjacent | |
113 compositions to a copy of it. This function also runs a proper | |
114 composition modification function to make a composition that gets | |
115 invalid by the change valid again. | |
116 | |
117 As a value of `composition' property holds information about a | |
118 specific range of text, the value gets invalid if we change the | |
119 text in the range. We treat `composition' property always | |
120 rear-nonsticky (currently by setting default-text-properties to | |
121 (rear-nonsticky (composition))) and we never make properties of | |
122 adjacent compositions identical. Thus, any such changes make the | |
123 range just shorter. So, we can check the validity of `composition' | |
124 property by comparing LENGTH information with the actual length of | |
125 the composition. | |
126 | |
127 */ | |
128 | |
129 | |
130 Lisp_Object Qcomposition; | |
131 | |
132 /* Table of pointers to the structure `composition' indexed by | |
133 COMPOSITION-ID. This structure is for storing information about | |
134 each composition except for COMPONENTS-VEC. */ | |
135 struct composition **composition_table; | |
136 | |
137 /* The current size of `composition_table'. */ | |
138 static int composition_table_size; | |
139 | |
140 /* Number of compositions currently made. */ | |
141 int n_compositions; | |
142 | |
143 /* Hash table for compositions. The key is COMPONENTS-VEC of | |
144 `composition' property. The value is the corresponding | |
145 COMPOSITION-ID. */ | |
146 Lisp_Object composition_hash_table; | |
147 | |
148 /* Function to call to adjust composition. */ | |
149 Lisp_Object Vcompose_chars_after_function; | |
150 | |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
151 /* Char-table of patterns and functions to make a composition. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
152 Lisp_Object Vcomposition_function_table; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
153 Lisp_Object Qcomposition_function_table; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
154 |
26848 | 155 /* Temporary variable used in macros COMPOSITION_XXX. */ |
156 Lisp_Object composition_temp; | |
157 | |
158 /* Return COMPOSITION-ID of a composition at buffer position | |
159 CHARPOS/BYTEPOS and length NCHARS. The `composition' property of | |
160 the sequence is PROP. STRING, if non-nil, is a string that | |
161 contains the composition instead of the current buffer. | |
162 | |
163 If the composition is invalid, return -1. */ | |
164 | |
165 int | |
166 get_composition_id (charpos, bytepos, nchars, prop, string) | |
167 int charpos, bytepos, nchars; | |
168 Lisp_Object prop, string; | |
169 { | |
170 Lisp_Object id, length, components, key, *key_contents; | |
171 int glyph_len; | |
172 struct Lisp_Hash_Table *hash_table = XHASH_TABLE (composition_hash_table); | |
173 int hash_index; | |
174 unsigned hash_code; | |
175 struct composition *cmp; | |
176 int i, ch; | |
177 | |
178 /* PROP should be | |
179 Form-A: ((LENGTH . COMPONENTS) . MODIFICATION-FUNC) | |
180 or | |
181 Form-B: (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC)) | |
182 */ | |
183 if (nchars == 0 || !CONSP (prop)) | |
184 goto invalid_composition; | |
185 | |
186 id = XCAR (prop); | |
187 if (INTEGERP (id)) | |
188 { | |
189 /* PROP should be Form-B. */ | |
190 if (XINT (id) < 0 || XINT (id) >= n_compositions) | |
191 goto invalid_composition; | |
192 return XINT (id); | |
193 } | |
194 | |
195 /* PROP should be Form-A. | |
196 Thus, ID should be (LENGTH . COMPONENTS). */ | |
197 if (!CONSP (id)) | |
198 goto invalid_composition; | |
199 length = XCAR (id); | |
200 if (!INTEGERP (length) || XINT (length) != nchars) | |
201 goto invalid_composition; | |
202 | |
203 components = XCDR (id); | |
204 | |
205 /* Check if the same composition has already been registered or not | |
206 by consulting composition_hash_table. The key for this table is | |
207 COMPONENTS (converted to a vector COMPONENTS-VEC) or, if it is | |
208 nil, vector of characters in the composition range. */ | |
209 if (INTEGERP (components)) | |
210 key = Fmake_vector (make_number (1), components); | |
211 else if (STRINGP (components) || CONSP (components)) | |
212 key = Fvconcat (1, &components); | |
213 else if (VECTORP (components)) | |
214 key = components; | |
215 else if (NILP (components)) | |
216 { | |
217 key = Fmake_vector (make_number (nchars), Qnil); | |
218 if (STRINGP (string)) | |
219 for (i = 0; i < nchars; i++) | |
220 { | |
221 FETCH_STRING_CHAR_ADVANCE (ch, string, charpos, bytepos); | |
222 XVECTOR (key)->contents[i] = make_number (ch); | |
223 } | |
224 else | |
225 for (i = 0; i < nchars; i++) | |
226 { | |
227 FETCH_CHAR_ADVANCE (ch, charpos, bytepos); | |
228 XVECTOR (key)->contents[i] = make_number (ch); | |
229 } | |
230 } | |
231 else | |
232 goto invalid_composition; | |
233 | |
234 hash_index = hash_lookup (hash_table, key, &hash_code); | |
235 if (hash_index >= 0) | |
236 { | |
237 /* We have already registered the same composition. Change PROP | |
238 from Form-A above to Form-B while replacing COMPONENTS with | |
239 COMPONENTS-VEC stored in the hash table. We can directly | |
240 modify the cons cell of PROP because it is not shared. */ | |
241 key = HASH_KEY (hash_table, hash_index); | |
242 id = HASH_VALUE (hash_table, hash_index); | |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39046
diff
changeset
|
243 XSETCAR (prop, id); |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39046
diff
changeset
|
244 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop)))); |
26848 | 245 return XINT (id); |
246 } | |
247 | |
248 /* This composition is a new one. We must register it. */ | |
249 | |
250 /* Check if we have sufficient memory to store this information. */ | |
251 if (composition_table_size == 0) | |
252 { | |
253 composition_table_size = 256; | |
254 composition_table | |
255 = (struct composition **) xmalloc (sizeof (composition_table[0]) | |
256 * composition_table_size); | |
257 } | |
258 else if (composition_table_size <= n_compositions) | |
259 { | |
260 composition_table_size += 256; | |
261 composition_table | |
262 = (struct composition **) xrealloc (composition_table, | |
263 sizeof (composition_table[0]) | |
264 * composition_table_size); | |
265 } | |
266 | |
267 key_contents = XVECTOR (key)->contents; | |
268 | |
269 /* Check if the contents of COMPONENTS are valid if COMPONENTS is a | |
270 vector or a list. It should be a sequence of: | |
271 char1 rule1 char2 rule2 char3 ... ruleN charN+1 */ | |
272 if (VECTORP (components) || CONSP (components)) | |
273 { | |
274 int len = XVECTOR (key)->size; | |
275 | |
276 /* The number of elements should be odd. */ | |
277 if ((len % 2) == 0) | |
278 goto invalid_composition; | |
279 /* All elements should be integers (character or encoded | |
280 composition rule). */ | |
281 for (i = 0; i < len; i++) | |
282 { | |
283 if (!INTEGERP (key_contents[i])) | |
284 goto invalid_composition; | |
285 } | |
286 } | |
287 | |
288 /* Change PROP from Form-A above to Form-B. We can directly modify | |
289 the cons cell of PROP because it is not shared. */ | |
290 XSETFASTINT (id, n_compositions); | |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39046
diff
changeset
|
291 XSETCAR (prop, id); |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39046
diff
changeset
|
292 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop)))); |
26848 | 293 |
294 /* Register the composition in composition_hash_table. */ | |
295 hash_index = hash_put (hash_table, key, id, hash_code); | |
296 | |
297 /* Register the composition in composition_table. */ | |
298 cmp = (struct composition *) xmalloc (sizeof (struct composition)); | |
299 | |
300 cmp->method = (NILP (components) | |
301 ? COMPOSITION_RELATIVE | |
302 : ((INTEGERP (components) || STRINGP (components)) | |
303 ? COMPOSITION_WITH_ALTCHARS | |
304 : COMPOSITION_WITH_RULE_ALTCHARS)); | |
305 cmp->hash_index = hash_index; | |
306 glyph_len = (cmp->method == COMPOSITION_WITH_RULE_ALTCHARS | |
307 ? (XVECTOR (key)->size + 1) / 2 | |
308 : XVECTOR (key)->size); | |
309 cmp->glyph_len = glyph_len; | |
310 cmp->offsets = (short *) xmalloc (sizeof (short) * glyph_len * 2); | |
311 cmp->font = NULL; | |
312 | |
313 /* Calculate the width of overall glyphs of the composition. */ | |
314 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS) | |
315 { | |
316 /* Relative composition. */ | |
317 cmp->width = 0; | |
318 for (i = 0; i < glyph_len; i++) | |
319 { | |
320 int this_width; | |
321 ch = XINT (key_contents[i]); | |
322 this_width = CHAR_WIDTH (ch); | |
323 if (cmp->width < this_width) | |
324 cmp->width = this_width; | |
325 } | |
326 } | |
327 else | |
328 { | |
329 /* Rule-base composition. */ | |
330 float leftmost = 0.0, rightmost; | |
331 | |
332 ch = XINT (key_contents[0]); | |
333 rightmost = CHAR_WIDTH (ch); | |
334 | |
335 for (i = 1; i < glyph_len; i += 2) | |
336 { | |
337 int rule, gref, nref; | |
338 int this_width; | |
339 float this_left; | |
340 | |
341 rule = XINT (key_contents[i]); | |
342 ch = XINT (key_contents[i + 1]); | |
343 this_width = CHAR_WIDTH (ch); | |
344 | |
345 /* A composition rule is specified by an integer value | |
346 that encodes global and new reference points (GREF and | |
347 NREF). GREF and NREF are specified by numbers as | |
348 below: | |
349 0---1---2 -- ascent | |
350 | | | |
351 | | | |
352 | | | |
353 9--10--11 -- center | |
354 | | | |
355 ---3---4---5--- baseline | |
356 | | | |
357 6---7---8 -- descent | |
358 */ | |
359 COMPOSITION_DECODE_RULE (rule, gref, nref); | |
360 this_left = (leftmost | |
361 + (gref % 3) * (rightmost - leftmost) / 2.0 | |
362 - (nref % 3) * this_width / 2.0); | |
363 | |
364 if (this_left < leftmost) | |
365 leftmost = this_left; | |
366 if (this_left + this_width > rightmost) | |
367 rightmost = this_left + this_width; | |
368 } | |
369 | |
370 cmp->width = rightmost - leftmost; | |
371 if (cmp->width < (rightmost - leftmost)) | |
372 /* To get a ceiling integer value. */ | |
373 cmp->width++; | |
374 } | |
375 | |
376 composition_table[n_compositions] = cmp; | |
377 | |
378 return n_compositions++; | |
379 | |
380 invalid_composition: | |
381 /* Would it be better to remove this `composition' property? */ | |
382 return -1; | |
383 } | |
384 | |
385 | |
386 /* Find a composition at or nearest to position POS of OBJECT (buffer | |
387 or string). | |
388 | |
389 OBJECT defaults to the current buffer. If there's a composition at | |
390 POS, set *START and *END to the start and end of the sequence, | |
391 *PROP to the `composition' property, and return 1. | |
392 | |
393 If there's no composition at POS and LIMIT is negative, return 0. | |
394 | |
395 Otherwise, search for a composition forward (LIMIT > POS) or | |
396 backward (LIMIT < POS). In this case, LIMIT bounds the search. | |
397 | |
398 If a composition is found, set *START, *END, and *PROP as above, | |
399 and return 1, else return 0. | |
400 | |
401 This doesn't check the validity of composition. */ | |
402 | |
403 int | |
404 find_composition (pos, limit, start, end, prop, object) | |
405 int pos, limit, *start, *end; | |
406 Lisp_Object *prop, object; | |
407 { | |
408 Lisp_Object val; | |
409 | |
410 if (get_property_and_range (pos, Qcomposition, prop, start, end, object)) | |
411 return 1; | |
412 | |
413 if (limit < 0 || limit == pos) | |
414 return 0; | |
415 | |
416 if (limit > pos) /* search forward */ | |
34933
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
417 { |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
418 val = Fnext_single_property_change (make_number (pos), Qcomposition, |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
419 object, make_number (limit)); |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
420 pos = XINT (val); |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
421 if (pos == limit) |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
422 return 0; |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
423 } |
26848 | 424 else /* search backward */ |
34933
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
425 { |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
426 if (get_property_and_range (pos - 1, Qcomposition, prop, start, end, |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
427 object)) |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
428 return 1; |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
429 val = Fprevious_single_property_change (make_number (pos), Qcomposition, |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
430 object, make_number (limit)); |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
431 pos = XINT (val); |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
432 if (pos == limit) |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
433 return 0; |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
434 pos--; |
414310d24f52
(find_composition): Fix a code for searching a composition backward.
Kenichi Handa <handa@m17n.org>
parents:
34241
diff
changeset
|
435 } |
26848 | 436 get_property_and_range (pos, Qcomposition, prop, start, end, object); |
437 return 1; | |
438 } | |
439 | |
440 /* Run a proper function to adjust the composition sitting between | |
441 FROM and TO with property PROP. */ | |
442 | |
443 static void | |
444 run_composition_function (from, to, prop) | |
445 int from, to; | |
446 Lisp_Object prop; | |
447 { | |
34958
e3133339e30c
(run_composition_function): Remove unused variable
Eli Zaretskii <eliz@gnu.org>
parents:
34933
diff
changeset
|
448 Lisp_Object func; |
26848 | 449 int start, end; |
450 | |
451 func = COMPOSITION_MODIFICATION_FUNC (prop); | |
452 /* If an invalid composition precedes or follows, try to make them | |
453 valid too. */ | |
454 if (from > BEGV | |
455 && find_composition (from - 1, -1, &start, &end, &prop, Qnil) | |
456 && !COMPOSITION_VALID_P (start, end, prop)) | |
457 from = start; | |
458 if (to < ZV | |
459 && find_composition (to, -1, &start, &end, &prop, Qnil) | |
460 && !COMPOSITION_VALID_P (start, end, prop)) | |
461 to = end; | |
462 if (!NILP (func)) | |
463 call2 (func, make_number (from), make_number (to)); | |
28472
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
26848
diff
changeset
|
464 else if (!NILP (Ffboundp (Vcompose_chars_after_function))) |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
465 call3 (Vcompose_chars_after_function, |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
466 make_number (from), make_number (to), Qnil); |
26848 | 467 } |
468 | |
469 /* Make invalid compositions adjacent to or inside FROM and TO valid. | |
470 CHECK_MASK is bitwise `or' of mask bits defined by macros | |
471 CHECK_XXX (see the comment in composite.h). | |
472 | |
473 This function is called when a buffer text is changed. If the | |
474 change is deletion, FROM == TO. Otherwise, FROM < TO. */ | |
475 | |
476 void | |
477 update_compositions (from, to, check_mask) | |
88929
a299fdd2a731
(update_compositions): Declare arg.
Dave Love <fx@gnu.org>
parents:
88366
diff
changeset
|
478 int from, to, check_mask; |
26848 | 479 { |
34958
e3133339e30c
(run_composition_function): Remove unused variable
Eli Zaretskii <eliz@gnu.org>
parents:
34933
diff
changeset
|
480 Lisp_Object prop; |
26848 | 481 int start, end; |
482 | |
39046
a61b3d907098
(update_compositions): Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
38116
diff
changeset
|
483 if (inhibit_modification_hooks) |
a61b3d907098
(update_compositions): Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
38116
diff
changeset
|
484 return; |
a61b3d907098
(update_compositions): Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
38116
diff
changeset
|
485 |
28581
151b7ae3b21f
(update_compositions): If FROM and TO is not in a
Kenichi Handa <handa@m17n.org>
parents:
28472
diff
changeset
|
486 /* If FROM and TO are not in a valid range, do nothing. */ |
151b7ae3b21f
(update_compositions): If FROM and TO is not in a
Kenichi Handa <handa@m17n.org>
parents:
28472
diff
changeset
|
487 if (! (BEGV <= from && from <= to && to <= ZV)) |
151b7ae3b21f
(update_compositions): If FROM and TO is not in a
Kenichi Handa <handa@m17n.org>
parents:
28472
diff
changeset
|
488 return; |
151b7ae3b21f
(update_compositions): If FROM and TO is not in a
Kenichi Handa <handa@m17n.org>
parents:
28472
diff
changeset
|
489 |
26848 | 490 if (check_mask & CHECK_HEAD) |
491 { | |
492 /* FROM should be at composition boundary. But, insertion or | |
493 deletion will make two compositions adjacent and | |
494 indistinguishable when they have same (eq) property. To | |
495 avoid it, in such a case, we change the property of the | |
496 latter to the copy of it. */ | |
497 if (from > BEGV | |
498 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)) | |
499 { | |
500 if (from < end) | |
501 Fput_text_property (make_number (from), make_number (end), | |
502 Qcomposition, | |
503 Fcons (XCAR (prop), XCDR (prop)), Qnil); | |
504 run_composition_function (start, end, prop); | |
505 from = end; | |
506 } | |
37242
029c8c1b451d
(update_compositions) <check_mask & CHECK_HEAD>: Fix
Dave Love <fx@gnu.org>
parents:
34958
diff
changeset
|
507 else if (from < ZV |
26848 | 508 && find_composition (from, -1, &start, &from, &prop, Qnil)) |
509 run_composition_function (start, from, prop); | |
510 } | |
511 | |
512 if (check_mask & CHECK_INSIDE) | |
513 { | |
514 /* In this case, we are sure that (check & CHECK_TAIL) is also | |
515 nonzero. Thus, here we should check only compositions before | |
516 (to - 1). */ | |
517 while (from < to - 1 | |
518 && find_composition (from, to, &start, &from, &prop, Qnil) | |
519 && from < to - 1) | |
520 run_composition_function (start, from, prop); | |
521 } | |
522 | |
523 if (check_mask & CHECK_TAIL) | |
524 { | |
525 if (from < to | |
526 && find_composition (to - 1, -1, &start, &end, &prop, Qnil)) | |
527 { | |
528 /* TO should be also at composition boundary. But, | |
529 insertion or deletion will make two compositions adjacent | |
530 and indistinguishable when they have same (eq) property. | |
531 To avoid it, in such a case, we change the property of | |
532 the former to the copy of it. */ | |
533 if (to < end) | |
534 Fput_text_property (make_number (start), make_number (to), | |
535 Qcomposition, | |
536 Fcons (XCAR (prop), XCDR (prop)), Qnil); | |
537 run_composition_function (start, end, prop); | |
538 } | |
539 else if (to < ZV | |
540 && find_composition (to, -1, &start, &end, &prop, Qnil)) | |
541 run_composition_function (start, end, prop); | |
542 } | |
543 } | |
544 | |
30022
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
545 |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
546 /* Modify composition property values in LIST destructively. LIST is |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
547 a list as returned from text_property_list. Change values to the |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
548 top-level copies of them so that none of them are `eq'. */ |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
549 |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
550 void |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
551 make_composition_value_copy (list) |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
552 Lisp_Object list; |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
553 { |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
554 Lisp_Object plist, val; |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
555 |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
556 for (; CONSP (list); list = XCDR (list)) |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
557 { |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
558 plist = XCAR (XCDR (XCDR (XCAR (list)))); |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
559 while (CONSP (plist) && CONSP (XCDR (plist))) |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
560 { |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
561 if (EQ (XCAR (plist), Qcomposition) |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
562 && (val = XCAR (XCDR (plist)), CONSP (val))) |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39046
diff
changeset
|
563 XSETCAR (XCDR (plist), Fcons (XCAR (val), XCDR (val))); |
30022
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
564 plist = XCDR (XCDR (plist)); |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
565 } |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
566 } |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
567 } |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
568 |
6a52904a743b
(make_composition_value_copy): New function.
Kenichi Handa <handa@m17n.org>
parents:
28581
diff
changeset
|
569 |
26848 | 570 /* Make text in the region between START and END a composition that |
571 has COMPONENTS and MODIFICATION-FUNC. | |
572 | |
573 If STRING is non-nil, then operate on characters contained between | |
574 indices START and END in STRING. */ | |
575 | |
576 void | |
577 compose_text (start, end, components, modification_func, string) | |
578 int start, end; | |
579 Lisp_Object components, modification_func, string; | |
580 { | |
581 Lisp_Object prop; | |
582 | |
583 prop = Fcons (Fcons (make_number (end - start), components), | |
584 modification_func); | |
585 Fput_text_property (make_number (start), make_number (end), | |
586 Qcomposition, prop, string); | |
587 } | |
588 | |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
589 /* Compose sequences of characters in the region between START and END |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
590 by functions registered in Vcomposition_function_table. If STRING |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
591 is non-nil, operate on characters contained between indices START |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
592 and END in STRING. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
593 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
594 void |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
595 compose_chars_in_text (start, end, string) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
596 int start, end; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
597 Lisp_Object string; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
598 { |
39046
a61b3d907098
(update_compositions): Do nothing if
Gerd Moellmann <gerd@gnu.org>
parents:
38116
diff
changeset
|
599 int count = 0; |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
600 struct gcpro gcpro1; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
601 Lisp_Object tail, elt, val, to; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
602 /* Set to nonzero if we don't have to compose ASCII characters. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
603 int skip_ascii; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
604 int i, len, stop, c; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
605 unsigned char *ptr, *pend; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
606 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
607 if (! CHAR_TABLE_P (Vcomposition_function_table)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
608 return; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
609 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
610 if (STRINGP (string)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
611 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
612 count = specpdl_ptr - specpdl; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
613 GCPRO1 (string); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
614 stop = end; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
615 ptr = XSTRING (string)->data + string_char_to_byte (string, start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
616 pend = ptr + STRING_BYTES (XSTRING (string)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
617 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
618 else |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
619 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
620 record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
621 TEMP_SET_PT (start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
622 stop = (start < GPT && GPT < end ? GPT : end); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
623 ptr = CHAR_POS_ADDR (start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
624 pend = CHAR_POS_ADDR (end); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
625 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
626 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
627 /* Preserve the match data. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
628 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
629 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
630 /* If none of ASCII characters have composition functions, we can |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
631 skip them quickly. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
632 for (i = 0; i < 128; i++) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
633 if (!NILP (CHAR_TABLE_REF (Vcomposition_function_table, i))) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
634 break; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
635 skip_ascii = (i == 128); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
636 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
637 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
638 while (1) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
639 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
640 if (skip_ascii) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
641 while (start < stop && ASCII_BYTE_P (*ptr)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
642 start++, ptr++; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
643 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
644 if (start >= stop) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
645 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
646 if (stop == end || start >= end) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
647 break; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
648 stop = end; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
649 if (STRINGP (string)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
650 ptr = XSTRING (string)->data + string_char_to_byte (string, start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
651 else |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
652 ptr = CHAR_POS_ADDR (start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
653 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
654 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
655 c = STRING_CHAR_AND_LENGTH (ptr, pend - ptr, len); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
656 tail = CHAR_TABLE_REF (Vcomposition_function_table, c); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
657 while (CONSP (tail)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
658 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
659 elt = XCAR (tail); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
660 if (CONSP (elt) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
661 && STRINGP (XCAR (elt)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
662 && !NILP (Ffboundp (XCDR (elt)))) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
663 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
664 if (STRINGP (string)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
665 val = Fstring_match (XCAR (elt), string, make_number (start)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
666 else |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
667 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
668 val = Flooking_at (XCAR (elt)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
669 if (!NILP (val)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
670 val = make_number (start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
671 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
672 if (INTEGERP (val) && XFASTINT (val) == start) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
673 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
674 to = Fmatch_end (make_number (0)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
675 val = call4 (XCDR (elt), val, to, XCAR (elt), string); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
676 if (INTEGERP (val) && XINT (val) > 1) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
677 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
678 start += XINT (val); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
679 if (STRINGP (string)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
680 ptr = XSTRING (string)->data + string_char_to_byte (string, start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
681 else |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
682 ptr = CHAR_POS_ADDR (start); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
683 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
684 else |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
685 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
686 start++; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
687 ptr += len; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
688 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
689 break; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
690 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
691 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
692 tail = XCDR (tail); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
693 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
694 if (!CONSP (tail)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
695 { |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
696 /* No composition done. Try the next character. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
697 start++; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
698 ptr += len; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
699 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
700 } |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
701 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
702 unbind_to (count, Qnil); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
703 if (STRINGP (string)) |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
704 UNGCPRO; |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
705 } |
26848 | 706 |
707 /* Emacs Lisp APIs. */ | |
708 | |
709 DEFUN ("compose-region-internal", Fcompose_region_internal, | |
710 Scompose_region_internal, 2, 4, 0, | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
711 doc: /* Internal use only. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
712 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
713 Compose text in the region between START and END. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
714 Optional 3rd and 4th arguments are COMPONENTS and MODIFICATION-FUNC |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
715 for the composition. See `compose-region' for more detial. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
716 (start, end, components, mod_func) |
26848 | 717 Lisp_Object start, end, components, mod_func; |
718 { | |
719 validate_region (&start, &end); | |
720 if (!NILP (components) | |
721 && !INTEGERP (components) | |
722 && !CONSP (components) | |
723 && !STRINGP (components)) | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
724 CHECK_VECTOR (components); |
26848 | 725 |
726 compose_text (XINT (start), XINT (end), components, mod_func, Qnil); | |
727 return Qnil; | |
728 } | |
729 | |
730 DEFUN ("compose-string-internal", Fcompose_string_internal, | |
731 Scompose_string_internal, 3, 5, 0, | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
732 doc: /* Internal use only. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
733 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
734 Compose text between indices START and END of STRING. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
735 Optional 4th and 5th arguments are COMPONENTS and MODIFICATION-FUNC |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
736 for the composition. See `compose-string' for more detial. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
737 (string, start, end, components, mod_func) |
26848 | 738 Lisp_Object string, start, end, components, mod_func; |
739 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
740 CHECK_STRING (string); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
741 CHECK_NUMBER (start); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
742 CHECK_NUMBER (end); |
26848 | 743 |
744 if (XINT (start) < 0 || | |
745 XINT (start) > XINT (end) | |
746 || XINT (end) > XSTRING (string)->size) | |
747 args_out_of_range (start, end); | |
748 | |
749 compose_text (XINT (start), XINT (end), components, mod_func, string); | |
750 return string; | |
751 } | |
752 | |
753 DEFUN ("find-composition-internal", Ffind_composition_internal, | |
754 Sfind_composition_internal, 4, 4, 0, | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
755 doc: /* Internal use only. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
756 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
757 Return information about composition at or nearest to position POS. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
758 See `find-composition' for more detail. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
759 (pos, limit, string, detail_p) |
26848 | 760 Lisp_Object pos, limit, string, detail_p; |
761 { | |
762 Lisp_Object prop, tail; | |
763 int start, end; | |
764 int id; | |
765 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
766 CHECK_NUMBER_COERCE_MARKER (pos); |
26848 | 767 start = XINT (pos); |
768 if (!NILP (limit)) | |
769 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
770 CHECK_NUMBER_COERCE_MARKER (limit); |
26848 | 771 end = XINT (limit); |
772 } | |
773 else | |
774 end = -1; | |
38097
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
775 |
26848 | 776 if (!NILP (string)) |
38097
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
777 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
778 CHECK_STRING (string); |
38116
a85b9df3dffb
(Ffind_composition_internal): Accept ZV
Gerd Moellmann <gerd@gnu.org>
parents:
38098
diff
changeset
|
779 if (XINT (pos) < 0 || XINT (pos) > XSTRING (string)->size) |
38097
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
780 args_out_of_range (string, pos); |
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
781 } |
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
782 else |
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
783 { |
38116
a85b9df3dffb
(Ffind_composition_internal): Accept ZV
Gerd Moellmann <gerd@gnu.org>
parents:
38098
diff
changeset
|
784 if (XINT (pos) < BEGV || XINT (pos) > ZV) |
38097
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
785 args_out_of_range (Fcurrent_buffer (), pos); |
8757fe98656e
(Ffind_composition_internal): Check POS
Gerd Moellmann <gerd@gnu.org>
parents:
37242
diff
changeset
|
786 } |
26848 | 787 |
788 if (!find_composition (start, end, &start, &end, &prop, string)) | |
789 return Qnil; | |
790 if (!COMPOSITION_VALID_P (start, end, prop)) | |
791 return Fcons (make_number (start), Fcons (make_number (end), | |
792 Fcons (Qnil, Qnil))); | |
793 if (NILP (detail_p)) | |
794 return Fcons (make_number (start), Fcons (make_number (end), | |
795 Fcons (Qt, Qnil))); | |
796 | |
797 if (COMPOSITION_REGISTERD_P (prop)) | |
798 id = COMPOSITION_ID (prop); | |
799 else | |
800 { | |
801 int start_byte = (NILP (string) | |
802 ? CHAR_TO_BYTE (start) | |
803 : string_char_to_byte (string, start)); | |
804 id = get_composition_id (start, start_byte, end - start, prop, string); | |
805 } | |
806 | |
807 if (id >= 0) | |
808 { | |
809 Lisp_Object components, relative_p, mod_func; | |
810 enum composition_method method = COMPOSITION_METHOD (prop); | |
811 int width = composition_table[id]->width; | |
812 | |
813 components = Fcopy_sequence (COMPOSITION_COMPONENTS (prop)); | |
814 relative_p = (method == COMPOSITION_WITH_RULE_ALTCHARS | |
815 ? Qnil : Qt); | |
816 mod_func = COMPOSITION_MODIFICATION_FUNC (prop); | |
817 tail = Fcons (components, | |
818 Fcons (relative_p, | |
819 Fcons (mod_func, | |
820 Fcons (make_number (width), Qnil)))); | |
821 } | |
822 else | |
823 tail = Qnil; | |
824 | |
825 return Fcons (make_number (start), Fcons (make_number (end), tail)); | |
826 } | |
827 | |
828 | |
829 void | |
830 syms_of_composite () | |
831 { | |
832 Qcomposition = intern ("composition"); | |
833 staticpro (&Qcomposition); | |
834 | |
835 /* Make a hash table for composition. */ | |
836 { | |
28472
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
26848
diff
changeset
|
837 Lisp_Object args[6]; |
26848 | 838 extern Lisp_Object QCsize; |
839 | |
840 args[0] = QCtest; | |
841 args[1] = Qequal; | |
842 args[2] = QCweakness; | |
843 args[3] = Qnil; | |
844 args[4] = QCsize; | |
845 args[5] = make_number (311); | |
28472
bae9218986ac
* composite.c (run_composite_function): Use NILP when checking for nil.
Ken Raeburn <raeburn@raeburn.org>
parents:
26848
diff
changeset
|
846 composition_hash_table = Fmake_hash_table (6, args); |
26848 | 847 staticpro (&composition_hash_table); |
848 } | |
849 | |
850 /* Text property `composition' should be nonsticky by default. */ | |
851 Vtext_property_default_nonsticky | |
852 = Fcons (Fcons (Qcomposition, Qt), Vtext_property_default_nonsticky); | |
853 | |
854 DEFVAR_LISP ("compose-chars-after-function", &Vcompose_chars_after_function, | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
855 doc: /* Function to adjust composition of buffer text. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
856 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
857 The function is called with three arguments FROM, TO, and OBJECT. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
858 FROM and TO specify the range of text of which composition should be |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
859 adjusted. OBJECT, if non-nil, is a string that contains the text. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
860 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
861 This function is called after a text with `composition' property is |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
862 inserted or deleted to keep `composition' property of buffer text |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
863 valid. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
864 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
865 The default value is the function `compose-chars-after'. */); |
26848 | 866 Vcompose_chars_after_function = intern ("compose-chars-after"); |
867 | |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
868 Qcomposition_function_table = intern ("composition-function-table"); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
869 staticpro (&Qcomposition_function_table); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
870 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
871 /* Intern this now in case it isn't already done. |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
872 Setting this variable twice is harmless. |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
873 But don't staticpro it here--that is done in alloc.c. */ |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
874 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
875 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
876 Fput (Qcomposition_function_table, Qchar_table_extra_slots, make_number (0)); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
877 |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
878 DEFVAR_LISP ("composition-function-table", &Vcomposition_function_table, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
879 doc: /* Char table of patterns and functions to make a composition. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
880 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
881 Each element is nil or an alist of PATTERNs vs FUNCs, where PATTERNs |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
882 are regular expressions and FUNCs are functions. FUNC is responsible |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
883 for composing text matching the corresponding PATTERN. FUNC is called |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
884 with three arguments FROM, TO, and PATTERN. See the function |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
885 `compose-chars-after' for more detail. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
886 |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
887 This table is looked up by the first character of a composition when |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
888 the composition gets invalid after a change in a buffer. */); |
33240
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
889 Vcomposition_function_table |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
890 = Fmake_char_table (Qcomposition_function_table, Qnil); |
aaa42106f0da
(Vcomposition_function_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
30171
diff
changeset
|
891 |
26848 | 892 defsubr (&Scompose_region_internal); |
893 defsubr (&Scompose_string_internal); | |
894 defsubr (&Sfind_composition_internal); | |
895 } |