]> code.delx.au - gnu-emacs/blob - src/composite.c
merge from trunk
[gnu-emacs] / src / composite.c
1 /* Composite sequence support.
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H14PRO021
6 Copyright (C) 2003, 2006
7 National Institute of Advanced Industrial Science and Technology (AIST)
8 Registration Number H13PRO009
9
10 This file is part of GNU Emacs.
11
12 GNU Emacs is free software: you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation, either version 3 of the License, or
15 (at your option) any later version.
16
17 GNU Emacs is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24
25 #include <config.h>
26
27 #define COMPOSITE_INLINE EXTERN_INLINE
28
29 #include "lisp.h"
30 #include "character.h"
31 #include "buffer.h"
32 #include "coding.h"
33 #include "intervals.h"
34 #include "window.h"
35 #include "frame.h"
36 #include "dispextern.h"
37 #include "font.h"
38 #include "termhooks.h"
39
40
41 /* Emacs uses special text property `composition' to support character
42 composition. A sequence of characters that have the same (i.e. eq)
43 `composition' property value is treated as a single composite
44 sequence (we call it just `composition' here after). Characters in
45 a composition are all composed somehow on the screen.
46
47 The property value has this form when the composition is made:
48 ((LENGTH . COMPONENTS) . MODIFICATION-FUNC)
49 then turns to this form:
50 (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC))
51 when the composition is registered in composition_hash_table and
52 composition_table. These rather peculiar structures were designed
53 to make it easy to distinguish them quickly (we can do that by
54 checking only the first element) and to extract LENGTH (from the
55 former form) and COMPOSITION-ID (from the latter form).
56
57 We register a composition when it is displayed, or when the width
58 is required (for instance, to calculate columns).
59
60 LENGTH -- Length of the composition. This information is used to
61 check the validity of the composition.
62
63 COMPONENTS -- Character, string, vector, list, or nil.
64
65 If it is nil, characters in the text are composed relatively
66 according to their metrics in font glyphs.
67
68 If it is a character or a string, the character or characters
69 in the string are composed relatively.
70
71 If it is a vector or list of integers, the element is a
72 character or an encoded composition rule. The characters are
73 composed according to the rules. (2N)th elements are
74 characters to be composed and (2N+1)th elements are
75 composition rules to tell how to compose (2N+2)th element with
76 the previously composed 2N glyphs.
77
78 COMPONENTS-VEC -- Vector of integers. In a relative composition,
79 the elements are the characters to be composed. In a rule-base
80 composition, the elements are characters or encoded
81 composition rules.
82
83 MODIFICATION-FUNC -- If non nil, it is a function to call when the
84 composition gets invalid after a modification in a buffer. If
85 it is nil, a function in `composition-function-table' of the
86 first character in the sequence is called.
87
88 COMPOSITION-ID --Identification number of the composition. It is
89 used as an index to composition_table for the composition.
90
91 When Emacs has to display a composition or has to know its
92 displaying width, the function get_composition_id is called. It
93 returns COMPOSITION-ID so that the caller can access the
94 information about the composition through composition_table. If a
95 COMPOSITION-ID has not yet been assigned to the composition,
96 get_composition_id checks the validity of `composition' property,
97 and, if valid, assigns a new ID, registers the information in
98 composition_hash_table and composition_table, and changes the form
99 of the property value. If the property is invalid,
100 get_composition_id returns -1 without changing the property value.
101
102 We use two tables to keep the information about composition;
103 composition_hash_table and composition_table.
104
105 The former is a hash table whose keys are COMPONENTS-VECs and
106 values are the corresponding COMPOSITION-IDs. This hash table is
107 weak, but as each key (COMPONENTS-VEC) is also kept as a value of the
108 `composition' property, it won't be collected as garbage until all
109 bits of text that have the same COMPONENTS-VEC are deleted.
110
111 The latter is a table of pointers to `struct composition' indexed
112 by COMPOSITION-ID. This structure keeps the other information (see
113 composite.h).
114
115 In general, a text property holds information about individual
116 characters. But, a `composition' property holds information about
117 a sequence of characters (in this sense, it is like the `intangible'
118 property). That means that we should not share the property value
119 in adjacent compositions -- we can't distinguish them if they have the
120 same property. So, after any changes, we call
121 `update_compositions' and change a property of one of adjacent
122 compositions to a copy of it. This function also runs a proper
123 composition modification function to make a composition that gets
124 invalid by the change valid again.
125
126 As the value of the `composition' property holds information about a
127 specific range of text, the value gets invalid if we change the
128 text in the range. We treat the `composition' property as always
129 rear-nonsticky (currently by setting default-text-properties to
130 (rear-nonsticky (composition))) and we never make properties of
131 adjacent compositions identical. Thus, any such changes make the
132 range just shorter. So, we can check the validity of the `composition'
133 property by comparing LENGTH information with the actual length of
134 the composition.
135
136 */
137
138
139 Lisp_Object Qcomposition;
140
141 /* Table of pointers to the structure `composition' indexed by
142 COMPOSITION-ID. This structure is for storing information about
143 each composition except for COMPONENTS-VEC. */
144 struct composition **composition_table;
145
146 /* The current size of `composition_table'. */
147 static ptrdiff_t composition_table_size;
148
149 /* Number of compositions currently made. */
150 ptrdiff_t n_compositions;
151
152 /* Hash table for compositions. The key is COMPONENTS-VEC of
153 `composition' property. The value is the corresponding
154 COMPOSITION-ID. */
155 Lisp_Object composition_hash_table;
156
157 static Lisp_Object Qauto_composed;
158 static Lisp_Object Qauto_composition_function;
159 /* Maximum number of characters to look back for
160 auto-compositions. */
161 #define MAX_AUTO_COMPOSITION_LOOKBACK 3
162
163 /* Return COMPOSITION-ID of a composition at buffer position
164 CHARPOS/BYTEPOS and length NCHARS. The `composition' property of
165 the sequence is PROP. STRING, if non-nil, is a string that
166 contains the composition instead of the current buffer.
167
168 If the composition is invalid, return -1. */
169
170 ptrdiff_t
171 get_composition_id (ptrdiff_t charpos, ptrdiff_t bytepos, ptrdiff_t nchars,
172 Lisp_Object prop, Lisp_Object string)
173 {
174 Lisp_Object id, length, components, key, *key_contents;
175 ptrdiff_t glyph_len;
176 struct Lisp_Hash_Table *hash_table = XHASH_TABLE (composition_hash_table);
177 ptrdiff_t hash_index;
178 EMACS_UINT hash_code;
179 enum composition_method method;
180 struct composition *cmp;
181 ptrdiff_t i;
182 int ch;
183
184 /* Maximum length of a string of glyphs. XftGlyphExtents limits
185 this to INT_MAX, and Emacs limits it further. Divide INT_MAX - 1
186 by 2 because x_produce_glyphs computes glyph_len * 2 + 1. Divide
187 the size by MAX_MULTIBYTE_LENGTH because encode_terminal_code
188 multiplies glyph_len by MAX_MULTIBYTE_LENGTH. */
189 enum {
190 GLYPH_LEN_MAX = min ((INT_MAX - 1) / 2,
191 min (PTRDIFF_MAX, SIZE_MAX) / MAX_MULTIBYTE_LENGTH)
192 };
193
194 /* PROP should be
195 Form-A: ((LENGTH . COMPONENTS) . MODIFICATION-FUNC)
196 or
197 Form-B: (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC))
198 */
199 if (nchars == 0 || !CONSP (prop))
200 goto invalid_composition;
201
202 id = XCAR (prop);
203 if (INTEGERP (id))
204 {
205 /* PROP should be Form-B. */
206 if (XINT (id) < 0 || XINT (id) >= n_compositions)
207 goto invalid_composition;
208 return XINT (id);
209 }
210
211 /* PROP should be Form-A.
212 Thus, ID should be (LENGTH . COMPONENTS). */
213 if (!CONSP (id))
214 goto invalid_composition;
215 length = XCAR (id);
216 if (!INTEGERP (length) || XINT (length) != nchars)
217 goto invalid_composition;
218
219 components = XCDR (id);
220
221 /* Check if the same composition has already been registered or not
222 by consulting composition_hash_table. The key for this table is
223 COMPONENTS (converted to a vector COMPONENTS-VEC) or, if it is
224 nil, vector of characters in the composition range. */
225 if (INTEGERP (components))
226 key = Fmake_vector (make_number (1), components);
227 else if (STRINGP (components) || CONSP (components))
228 key = Fvconcat (1, &components);
229 else if (VECTORP (components))
230 key = components;
231 else if (NILP (components))
232 {
233 key = make_uninit_vector (nchars);
234 if (STRINGP (string))
235 for (i = 0; i < nchars; i++)
236 {
237 FETCH_STRING_CHAR_ADVANCE (ch, string, charpos, bytepos);
238 ASET (key, i, make_number (ch));
239 }
240 else
241 for (i = 0; i < nchars; i++)
242 {
243 FETCH_CHAR_ADVANCE (ch, charpos, bytepos);
244 ASET (key, i, make_number (ch));
245 }
246 }
247 else
248 goto invalid_composition;
249
250 hash_index = hash_lookup (hash_table, key, &hash_code);
251 if (hash_index >= 0)
252 {
253 /* We have already registered the same composition. Change PROP
254 from Form-A above to Form-B while replacing COMPONENTS with
255 COMPONENTS-VEC stored in the hash table. We can directly
256 modify the cons cell of PROP because it is not shared. */
257 key = HASH_KEY (hash_table, hash_index);
258 id = HASH_VALUE (hash_table, hash_index);
259 XSETCAR (prop, id);
260 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop))));
261 return XINT (id);
262 }
263
264 /* This composition is a new one. We must register it. */
265
266 /* Check if we have sufficient memory to store this information. */
267 if (composition_table_size <= n_compositions)
268 composition_table = xpalloc (composition_table, &composition_table_size,
269 1, -1, sizeof *composition_table);
270
271 key_contents = XVECTOR (key)->contents;
272
273 /* Check if the contents of COMPONENTS are valid if COMPONENTS is a
274 vector or a list. It should be a sequence of:
275 char1 rule1 char2 rule2 char3 ... ruleN charN+1 */
276
277 if (VECTORP (components)
278 && ASIZE (components) >= 2
279 && VECTORP (AREF (components, 0)))
280 {
281 /* COMPONENTS is a glyph-string. */
282 ptrdiff_t len = ASIZE (key);
283
284 for (i = 1; i < len; i++)
285 if (! VECTORP (AREF (key, i)))
286 goto invalid_composition;
287 }
288 else if (VECTORP (components) || CONSP (components))
289 {
290 ptrdiff_t len = ASIZE (key);
291
292 /* The number of elements should be odd. */
293 if ((len % 2) == 0)
294 goto invalid_composition;
295 /* All elements should be integers (character or encoded
296 composition rule). */
297 for (i = 0; i < len; i++)
298 {
299 if (!INTEGERP (key_contents[i]))
300 goto invalid_composition;
301 }
302 }
303
304 /* Change PROP from Form-A above to Form-B. We can directly modify
305 the cons cell of PROP because it is not shared. */
306 XSETFASTINT (id, n_compositions);
307 XSETCAR (prop, id);
308 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop))));
309
310 /* Register the composition in composition_hash_table. */
311 hash_index = hash_put (hash_table, key, id, hash_code);
312
313 method = (NILP (components)
314 ? COMPOSITION_RELATIVE
315 : ((INTEGERP (components) || STRINGP (components))
316 ? COMPOSITION_WITH_ALTCHARS
317 : COMPOSITION_WITH_RULE_ALTCHARS));
318
319 glyph_len = (method == COMPOSITION_WITH_RULE_ALTCHARS
320 ? (ASIZE (key) + 1) / 2
321 : ASIZE (key));
322
323 if (GLYPH_LEN_MAX < glyph_len)
324 memory_full (SIZE_MAX);
325
326 /* Register the composition in composition_table. */
327 cmp = xmalloc (sizeof *cmp);
328
329 cmp->method = method;
330 cmp->hash_index = hash_index;
331 cmp->glyph_len = glyph_len;
332 cmp->offsets = xnmalloc (glyph_len, 2 * sizeof *cmp->offsets);
333 cmp->font = NULL;
334
335 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
336 {
337 /* Relative composition. */
338 cmp->width = 0;
339 for (i = 0; i < glyph_len; i++)
340 {
341 int this_width;
342 ch = XINT (key_contents[i]);
343 /* TAB in a composition means display glyphs with padding
344 space on the left or right. */
345 this_width = (ch == '\t' ? 1 : CHAR_WIDTH (ch));
346 if (cmp->width < this_width)
347 cmp->width = this_width;
348 }
349 }
350 else
351 {
352 /* Rule-base composition. */
353 double leftmost = 0.0, rightmost;
354
355 ch = XINT (key_contents[0]);
356 rightmost = ch != '\t' ? CHAR_WIDTH (ch) : 1;
357
358 for (i = 1; i < glyph_len; i += 2)
359 {
360 int rule, gref, nref;
361 int this_width;
362 double this_left;
363
364 rule = XINT (key_contents[i]);
365 ch = XINT (key_contents[i + 1]);
366 this_width = ch != '\t' ? CHAR_WIDTH (ch) : 1;
367
368 /* A composition rule is specified by an integer value
369 that encodes global and new reference points (GREF and
370 NREF). GREF and NREF are specified by numbers as
371 below:
372 0---1---2 -- ascent
373 | |
374 | |
375 | |
376 9--10--11 -- center
377 | |
378 ---3---4---5--- baseline
379 | |
380 6---7---8 -- descent
381 */
382 COMPOSITION_DECODE_REFS (rule, gref, nref);
383 this_left = (leftmost
384 + (gref % 3) * (rightmost - leftmost) / 2.0
385 - (nref % 3) * this_width / 2.0);
386
387 if (this_left < leftmost)
388 leftmost = this_left;
389 if (this_left + this_width > rightmost)
390 rightmost = this_left + this_width;
391 }
392
393 cmp->width = rightmost - leftmost;
394 if (cmp->width < (rightmost - leftmost))
395 /* To get a ceiling integer value. */
396 cmp->width++;
397 }
398
399 composition_table[n_compositions] = cmp;
400
401 return n_compositions++;
402
403 invalid_composition:
404 /* Would it be better to remove this `composition' property? */
405 return -1;
406 }
407
408 \f
409 /* Find a static composition at or nearest to position POS of OBJECT
410 (buffer or string).
411
412 OBJECT defaults to the current buffer. If there's a composition at
413 POS, set *START and *END to the start and end of the sequence,
414 *PROP to the `composition' property, and return 1.
415
416 If there's no composition at POS and LIMIT is negative, return 0.
417
418 Otherwise, search for a composition forward (LIMIT > POS) or
419 backward (LIMIT < POS). In this case, LIMIT bounds the search.
420
421 If a composition is found, set *START, *END, and *PROP as above,
422 and return 1, else return 0.
423
424 This doesn't check the validity of composition. */
425
426 bool
427 find_composition (ptrdiff_t pos, ptrdiff_t limit,
428 ptrdiff_t *start, ptrdiff_t *end,
429 Lisp_Object *prop, Lisp_Object object)
430 {
431 Lisp_Object val;
432
433 if (get_property_and_range (pos, Qcomposition, prop, start, end, object))
434 return 1;
435
436 if (limit < 0 || limit == pos)
437 return 0;
438
439 if (limit > pos) /* search forward */
440 {
441 val = Fnext_single_property_change (make_number (pos), Qcomposition,
442 object, make_number (limit));
443 pos = XINT (val);
444 if (pos == limit)
445 return 0;
446 }
447 else /* search backward */
448 {
449 if (get_property_and_range (pos - 1, Qcomposition, prop, start, end,
450 object))
451 return 1;
452 val = Fprevious_single_property_change (make_number (pos), Qcomposition,
453 object, make_number (limit));
454 pos = XINT (val);
455 if (pos == limit)
456 return 0;
457 pos--;
458 }
459 get_property_and_range (pos, Qcomposition, prop, start, end, object);
460 return 1;
461 }
462
463 /* Run a proper function to adjust the composition sitting between
464 FROM and TO with property PROP. */
465
466 static void
467 run_composition_function (ptrdiff_t from, ptrdiff_t to, Lisp_Object prop)
468 {
469 Lisp_Object func;
470 ptrdiff_t start, end;
471
472 func = COMPOSITION_MODIFICATION_FUNC (prop);
473 /* If an invalid composition precedes or follows, try to make them
474 valid too. */
475 if (from > BEGV
476 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)
477 && !composition_valid_p (start, end, prop))
478 from = start;
479 if (to < ZV
480 && find_composition (to, -1, &start, &end, &prop, Qnil)
481 && !composition_valid_p (start, end, prop))
482 to = end;
483 if (!NILP (Ffboundp (func)))
484 call2 (func, make_number (from), make_number (to));
485 }
486
487 /* Make invalid compositions adjacent to or inside FROM and TO valid.
488 CHECK_MASK is bitwise `or' of mask bits defined by macros
489 CHECK_XXX (see the comment in composite.h).
490
491 It also resets the text-property `auto-composed' to a proper region
492 so that automatic character composition works correctly later while
493 displaying the region.
494
495 This function is called when a buffer text is changed. If the
496 change is deletion, FROM == TO. Otherwise, FROM < TO. */
497
498 void
499 update_compositions (ptrdiff_t from, ptrdiff_t to, int check_mask)
500 {
501 Lisp_Object prop;
502 ptrdiff_t start, end;
503 /* The beginning and end of the region to set the property
504 `auto-composed' to nil. */
505 ptrdiff_t min_pos = from, max_pos = to;
506
507 if (inhibit_modification_hooks)
508 return;
509
510 /* If FROM and TO are not in a valid range, do nothing. */
511 if (! (BEGV <= from && from <= to && to <= ZV))
512 return;
513
514 if (check_mask & CHECK_HEAD)
515 {
516 /* FROM should be at composition boundary. But, insertion or
517 deletion will make two compositions adjacent and
518 indistinguishable when they have same (eq) property. To
519 avoid it, in such a case, we change the property of the
520 latter to the copy of it. */
521 if (from > BEGV
522 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)
523 && composition_valid_p (start, end, prop))
524 {
525 min_pos = start;
526 if (end > to)
527 max_pos = end;
528 if (from < end)
529 Fput_text_property (make_number (from), make_number (end),
530 Qcomposition,
531 Fcons (XCAR (prop), XCDR (prop)), Qnil);
532 run_composition_function (start, end, prop);
533 from = end;
534 }
535 else if (from < ZV
536 && find_composition (from, -1, &start, &from, &prop, Qnil)
537 && composition_valid_p (start, from, prop))
538 {
539 if (from > to)
540 max_pos = from;
541 run_composition_function (start, from, prop);
542 }
543 }
544
545 if (check_mask & CHECK_INSIDE)
546 {
547 /* In this case, we are sure that (check & CHECK_TAIL) is also
548 nonzero. Thus, here we should check only compositions before
549 (to - 1). */
550 while (from < to - 1
551 && find_composition (from, to, &start, &from, &prop, Qnil)
552 && composition_valid_p (start, from, prop)
553 && from < to - 1)
554 run_composition_function (start, from, prop);
555 }
556
557 if (check_mask & CHECK_TAIL)
558 {
559 if (from < to
560 && find_composition (to - 1, -1, &start, &end, &prop, Qnil)
561 && composition_valid_p (start, end, prop))
562 {
563 /* TO should be also at composition boundary. But,
564 insertion or deletion will make two compositions adjacent
565 and indistinguishable when they have same (eq) property.
566 To avoid it, in such a case, we change the property of
567 the former to the copy of it. */
568 if (to < end)
569 {
570 Fput_text_property (make_number (start), make_number (to),
571 Qcomposition,
572 Fcons (XCAR (prop), XCDR (prop)), Qnil);
573 max_pos = end;
574 }
575 run_composition_function (start, end, prop);
576 }
577 else if (to < ZV
578 && find_composition (to, -1, &start, &end, &prop, Qnil)
579 && composition_valid_p (start, end, prop))
580 {
581 run_composition_function (start, end, prop);
582 max_pos = end;
583 }
584 }
585 if (min_pos < max_pos)
586 {
587 ptrdiff_t count = SPECPDL_INDEX ();
588
589 specbind (Qinhibit_read_only, Qt);
590 specbind (Qinhibit_modification_hooks, Qt);
591 specbind (Qinhibit_point_motion_hooks, Qt);
592 Fremove_list_of_text_properties (make_number (min_pos),
593 make_number (max_pos),
594 list1 (Qauto_composed), Qnil);
595 unbind_to (count, Qnil);
596 }
597 }
598
599
600 /* Modify composition property values in LIST destructively. LIST is
601 a list as returned from text_property_list. Change values to the
602 top-level copies of them so that none of them are `eq'. */
603
604 void
605 make_composition_value_copy (Lisp_Object list)
606 {
607 Lisp_Object plist, val;
608
609 for (; CONSP (list); list = XCDR (list))
610 {
611 plist = XCAR (XCDR (XCDR (XCAR (list))));
612 while (CONSP (plist) && CONSP (XCDR (plist)))
613 {
614 if (EQ (XCAR (plist), Qcomposition)
615 && (val = XCAR (XCDR (plist)), CONSP (val)))
616 XSETCAR (XCDR (plist), Fcons (XCAR (val), XCDR (val)));
617 plist = XCDR (XCDR (plist));
618 }
619 }
620 }
621
622
623 /* Make text in the region between START and END a composition that
624 has COMPONENTS and MODIFICATION-FUNC.
625
626 If STRING is non-nil, then operate on characters contained between
627 indices START and END in STRING. */
628
629 void
630 compose_text (ptrdiff_t start, ptrdiff_t end, Lisp_Object components,
631 Lisp_Object modification_func, Lisp_Object string)
632 {
633 Lisp_Object prop;
634
635 prop = Fcons (Fcons (make_number (end - start), components),
636 modification_func);
637 Fput_text_property (make_number (start), make_number (end),
638 Qcomposition, prop, string);
639 }
640
641 /* Lisp glyph-string handlers. */
642
643 /* Hash table for automatic composition. The key is a header of a
644 lgstring (Lispy glyph-string), and the value is a body of a
645 lgstring. */
646
647 static Lisp_Object gstring_hash_table;
648
649 static Lisp_Object gstring_lookup_cache (Lisp_Object);
650
651 static Lisp_Object
652 gstring_lookup_cache (Lisp_Object header)
653 {
654 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
655 ptrdiff_t i = hash_lookup (h, header, NULL);
656
657 return (i >= 0 ? HASH_VALUE (h, i) : Qnil);
658 }
659
660 Lisp_Object
661 composition_gstring_put_cache (Lisp_Object gstring, ptrdiff_t len)
662 {
663 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
664 EMACS_UINT hash;
665 Lisp_Object header, copy;
666 ptrdiff_t i;
667
668 header = LGSTRING_HEADER (gstring);
669 hash = h->test.hashfn (&h->test, header);
670 if (len < 0)
671 {
672 ptrdiff_t j, glyph_len = LGSTRING_GLYPH_LEN (gstring);
673 for (j = 0; j < glyph_len; j++)
674 if (NILP (LGSTRING_GLYPH (gstring, j)))
675 break;
676 len = j;
677 }
678
679 lint_assume (len <= TYPE_MAXIMUM (ptrdiff_t) - 2);
680 copy = Fmake_vector (make_number (len + 2), Qnil);
681 LGSTRING_SET_HEADER (copy, Fcopy_sequence (header));
682 for (i = 0; i < len; i++)
683 LGSTRING_SET_GLYPH (copy, i, Fcopy_sequence (LGSTRING_GLYPH (gstring, i)));
684 i = hash_put (h, LGSTRING_HEADER (copy), copy, hash);
685 LGSTRING_SET_ID (copy, make_number (i));
686 return copy;
687 }
688
689 Lisp_Object
690 composition_gstring_from_id (ptrdiff_t id)
691 {
692 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
693
694 return HASH_VALUE (h, id);
695 }
696
697 bool
698 composition_gstring_p (Lisp_Object gstring)
699 {
700 Lisp_Object header;
701 ptrdiff_t i;
702
703 if (! VECTORP (gstring) || ASIZE (gstring) < 2)
704 return 0;
705 header = LGSTRING_HEADER (gstring);
706 if (! VECTORP (header) || ASIZE (header) < 2)
707 return 0;
708 if (! NILP (LGSTRING_FONT (gstring))
709 && (! FONT_OBJECT_P (LGSTRING_FONT (gstring))
710 && ! CODING_SYSTEM_P (LGSTRING_FONT (gstring))))
711 return 0;
712 for (i = 1; i < ASIZE (LGSTRING_HEADER (gstring)); i++)
713 if (! NATNUMP (AREF (LGSTRING_HEADER (gstring), i)))
714 return 0;
715 if (! NILP (LGSTRING_ID (gstring)) && ! NATNUMP (LGSTRING_ID (gstring)))
716 return 0;
717 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
718 {
719 Lisp_Object glyph = LGSTRING_GLYPH (gstring, i);
720 if (NILP (glyph))
721 break;
722 if (! VECTORP (glyph) || ASIZE (glyph) != LGLYPH_SIZE)
723 return 0;
724 }
725 return 1;
726 }
727
728 int
729 composition_gstring_width (Lisp_Object gstring, ptrdiff_t from, ptrdiff_t to,
730 struct font_metrics *metrics)
731 {
732 Lisp_Object *glyph;
733 int width = 0;
734
735 if (metrics)
736 {
737 Lisp_Object font_object = LGSTRING_FONT (gstring);
738
739 if (FONT_OBJECT_P (font_object))
740 {
741 struct font *font = XFONT_OBJECT (font_object);
742
743 metrics->ascent = font->ascent;
744 metrics->descent = font->descent;
745 }
746 else
747 {
748 metrics->ascent = 1;
749 metrics->descent = 0;
750 }
751 metrics->width = metrics->lbearing = metrics->rbearing = 0;
752 }
753 for (glyph = lgstring_glyph_addr (gstring, from); from < to; from++, glyph++)
754 {
755 int x;
756
757 if (NILP (LGLYPH_ADJUSTMENT (*glyph)))
758 width += LGLYPH_WIDTH (*glyph);
759 else
760 width += LGLYPH_WADJUST (*glyph);
761 if (metrics)
762 {
763 x = metrics->width + LGLYPH_LBEARING (*glyph) + LGLYPH_XOFF (*glyph);
764 if (metrics->lbearing > x)
765 metrics->lbearing = x;
766 x = metrics->width + LGLYPH_RBEARING (*glyph) + LGLYPH_XOFF (*glyph);
767 if (metrics->rbearing < x)
768 metrics->rbearing = x;
769 metrics->width = width;
770 x = LGLYPH_ASCENT (*glyph) - LGLYPH_YOFF (*glyph);
771 if (metrics->ascent < x)
772 metrics->ascent = x;
773 x = LGLYPH_DESCENT (*glyph) + LGLYPH_YOFF (*glyph);
774 if (metrics->descent < x)
775 metrics->descent = x;
776 }
777 }
778 return width;
779 }
780
781
782 static Lisp_Object gstring_work;
783 static Lisp_Object gstring_work_headers;
784
785 static Lisp_Object
786 fill_gstring_header (Lisp_Object header, Lisp_Object start, Lisp_Object end,
787 Lisp_Object font_object, Lisp_Object string)
788 {
789 ptrdiff_t from, to, from_byte;
790 ptrdiff_t len, i;
791
792 if (NILP (string))
793 {
794 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
795 error ("Attempt to shape unibyte text");
796 validate_region (&start, &end);
797 from = XFASTINT (start);
798 to = XFASTINT (end);
799 from_byte = CHAR_TO_BYTE (from);
800 }
801 else
802 {
803 CHECK_STRING (string);
804 if (! STRING_MULTIBYTE (string))
805 error ("Attempt to shape unibyte text");
806 /* The caller checks that START and END are nonnegative integers. */
807 if (! (XINT (start) <= XINT (end) && XINT (end) <= SCHARS (string)))
808 args_out_of_range_3 (string, start, end);
809 from = XINT (start);
810 to = XINT (end);
811 from_byte = string_char_to_byte (string, from);
812 }
813
814 len = to - from;
815 if (len == 0)
816 error ("Attempt to shape zero-length text");
817 if (VECTORP (header))
818 {
819 if (ASIZE (header) != len + 1)
820 args_out_of_range (header, make_number (len + 1));
821 }
822 else
823 {
824 if (len <= 8)
825 header = AREF (gstring_work_headers, len - 1);
826 else
827 header = make_uninit_vector (len + 1);
828 }
829
830 ASET (header, 0, font_object);
831 for (i = 0; i < len; i++)
832 {
833 int c;
834
835 if (NILP (string))
836 FETCH_CHAR_ADVANCE_NO_CHECK (c, from, from_byte);
837 else
838 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, from, from_byte);
839 ASET (header, i + 1, make_number (c));
840 }
841 return header;
842 }
843
844 static void
845 fill_gstring_body (Lisp_Object gstring)
846 {
847 Lisp_Object font_object = LGSTRING_FONT (gstring);
848 Lisp_Object header = AREF (gstring, 0);
849 ptrdiff_t len = LGSTRING_CHAR_LEN (gstring);
850 ptrdiff_t i;
851
852 for (i = 0; i < len; i++)
853 {
854 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
855 int c = XFASTINT (AREF (header, i + 1));
856
857 if (NILP (g))
858 {
859 g = LGLYPH_NEW ();
860 LGSTRING_SET_GLYPH (gstring, i, g);
861 }
862 LGLYPH_SET_FROM (g, i);
863 LGLYPH_SET_TO (g, i);
864 LGLYPH_SET_CHAR (g, c);
865 if (FONT_OBJECT_P (font_object))
866 {
867 font_fill_lglyph_metrics (g, font_object);
868 }
869 else
870 {
871 int width = XFASTINT (CHAR_TABLE_REF (Vchar_width_table, c));
872
873 LGLYPH_SET_CODE (g, c);
874 LGLYPH_SET_LBEARING (g, 0);
875 LGLYPH_SET_RBEARING (g, width);
876 LGLYPH_SET_WIDTH (g, width);
877 LGLYPH_SET_ASCENT (g, 1);
878 LGLYPH_SET_DESCENT (g, 0);
879 }
880 LGLYPH_SET_ADJUSTMENT (g, Qnil);
881 }
882 if (i < LGSTRING_GLYPH_LEN (gstring))
883 LGSTRING_SET_GLYPH (gstring, i, Qnil);
884 }
885
886
887 /* Try to compose the characters at CHARPOS according to composition
888 rule RULE ([PATTERN PREV-CHARS FUNC]). LIMIT limits the characters
889 to compose. STRING, if not nil, is a target string. WIN is a
890 window where the characters are being displayed. If characters are
891 successfully composed, return the composition as a glyph-string
892 object. Otherwise return nil. */
893
894 static Lisp_Object
895 autocmp_chars (Lisp_Object rule, ptrdiff_t charpos, ptrdiff_t bytepos,
896 ptrdiff_t limit, struct window *win, struct face *face,
897 Lisp_Object string)
898 {
899 ptrdiff_t count = SPECPDL_INDEX ();
900 struct frame *f = XFRAME (win->frame);
901 Lisp_Object pos = make_number (charpos);
902 ptrdiff_t to;
903 ptrdiff_t pt = PT, pt_byte = PT_BYTE;
904 Lisp_Object re, font_object, lgstring;
905 ptrdiff_t len;
906
907 record_unwind_save_match_data ();
908 re = AREF (rule, 0);
909 if (NILP (re))
910 len = 1;
911 else if (! STRINGP (re))
912 return unbind_to (count, Qnil);
913 else if ((len = fast_looking_at (re, charpos, bytepos, limit, -1, string))
914 > 0)
915 {
916 if (NILP (string))
917 len = BYTE_TO_CHAR (bytepos + len) - charpos;
918 else
919 len = string_byte_to_char (string, bytepos + len) - charpos;
920 }
921 if (len <= 0)
922 return unbind_to (count, Qnil);
923 to = limit = charpos + len;
924 #ifdef HAVE_WINDOW_SYSTEM
925 if (FRAME_WINDOW_P (f))
926 {
927 font_object = font_range (charpos, bytepos, &to, win, face, string);
928 if (! FONT_OBJECT_P (font_object)
929 || (! NILP (re)
930 && to < limit
931 && (fast_looking_at (re, charpos, bytepos, to, -1, string) <= 0)))
932 return unbind_to (count, Qnil);
933 }
934 else
935 #endif /* not HAVE_WINDOW_SYSTEM */
936 font_object = win->frame;
937 lgstring = Fcomposition_get_gstring (pos, make_number (to), font_object,
938 string);
939 if (NILP (LGSTRING_ID (lgstring)))
940 {
941 /* Save point as marker before calling out to lisp. */
942 if (NILP (string))
943 record_unwind_protect (restore_point_unwind,
944 build_marker (current_buffer, pt, pt_byte));
945 lgstring = safe_call (6, Vauto_composition_function, AREF (rule, 2),
946 pos, make_number (to), font_object, string);
947 }
948 return unbind_to (count, lgstring);
949 }
950
951 static Lisp_Object _work_val;
952
953 /* 1 iff the character C is composable. Characters of general
954 category Z? or C? are not composable except for ZWNJ and ZWJ. */
955
956 #define CHAR_COMPOSABLE_P(C) \
957 ((C) > ' ' \
958 && ((C) == 0x200C || (C) == 0x200D \
959 || (_work_val = CHAR_TABLE_REF (Vunicode_category_table, (C)), \
960 (INTEGERP (_work_val) \
961 && (XINT (_work_val) <= UNICODE_CATEGORY_So)))))
962
963 /* Update cmp_it->stop_pos to the next position after CHARPOS (and
964 BYTEPOS) where character composition may happen. If BYTEPOS is
965 negative, compute it. ENDPOS is a limit of searching. If it is
966 less than CHARPOS, search backward to ENDPOS+1 assuming that
967 set_iterator_to_next works in reverse order. In this case, if a
968 composition closest to CHARPOS is found, set cmp_it->stop_pos to
969 the last character of the composition.
970
971 If no composition is found, set cmp_it->ch to -2. If a static
972 composition is found, set cmp_it->ch to -1. Otherwise, set
973 cmp_it->ch to the character that triggers the automatic
974 composition. */
975
976 void
977 composition_compute_stop_pos (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff_t bytepos, ptrdiff_t endpos, Lisp_Object string)
978 {
979 ptrdiff_t start, end;
980 int c;
981 Lisp_Object prop, val;
982 /* This is from forward_to_next_line_start in xdisp.c. */
983 const int MAX_NEWLINE_DISTANCE = 500;
984
985 if (charpos < endpos)
986 {
987 if (endpos > charpos + MAX_NEWLINE_DISTANCE)
988 endpos = charpos + MAX_NEWLINE_DISTANCE;
989 }
990 else if (endpos < charpos)
991 {
992 /* We search backward for a position to check composition. */
993 if (endpos < 0)
994 {
995 /* But we don't know where to stop the searching. */
996 endpos = NILP (string) ? BEGV - 1 : -1;
997 /* Usually we don't reach ENDPOS because we stop searching
998 at an uncomposable character (NL, LRE, etc). */
999 }
1000 }
1001 cmp_it->id = -1;
1002 cmp_it->ch = -2;
1003 cmp_it->reversed_p = 0;
1004 cmp_it->stop_pos = endpos;
1005 if (charpos == endpos)
1006 return;
1007 /* FIXME: Bidi is not yet handled well in static composition. */
1008 if (charpos < endpos
1009 && find_composition (charpos, endpos, &start, &end, &prop, string)
1010 && start >= charpos
1011 && composition_valid_p (start, end, prop))
1012 {
1013 cmp_it->stop_pos = endpos = start;
1014 cmp_it->ch = -1;
1015 }
1016 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
1017 || NILP (Vauto_composition_mode))
1018 return;
1019 if (bytepos < 0)
1020 {
1021 if (NILP (string))
1022 bytepos = CHAR_TO_BYTE (charpos);
1023 else
1024 bytepos = string_char_to_byte (string, charpos);
1025 }
1026
1027 start = charpos;
1028 if (charpos < endpos)
1029 {
1030 /* Forward search. */
1031 while (charpos < endpos)
1032 {
1033 if (STRINGP (string))
1034 FETCH_STRING_CHAR_ADVANCE (c, string, charpos, bytepos);
1035 else
1036 FETCH_CHAR_ADVANCE (c, charpos, bytepos);
1037 if (c == '\n')
1038 {
1039 cmp_it->ch = -2;
1040 break;
1041 }
1042 val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1043 if (! NILP (val))
1044 {
1045 Lisp_Object elt;
1046 int ridx;
1047
1048 for (ridx = 0; CONSP (val); val = XCDR (val), ridx++)
1049 {
1050 elt = XCAR (val);
1051 if (VECTORP (elt) && ASIZE (elt) == 3
1052 && NATNUMP (AREF (elt, 1))
1053 && charpos - 1 - XFASTINT (AREF (elt, 1)) >= start)
1054 break;
1055 }
1056 if (CONSP (val))
1057 {
1058 cmp_it->rule_idx = ridx;
1059 cmp_it->lookback = XFASTINT (AREF (elt, 1));
1060 cmp_it->stop_pos = charpos - 1 - cmp_it->lookback;
1061 cmp_it->ch = c;
1062 return;
1063 }
1064 }
1065 }
1066 if (charpos == endpos)
1067 {
1068 /* We couldn't find a composition point before ENDPOS. But,
1069 some character after ENDPOS may be composed with
1070 characters before ENDPOS. So, we should stop at the safe
1071 point. */
1072 charpos = endpos - MAX_AUTO_COMPOSITION_LOOKBACK;
1073 if (charpos < start)
1074 charpos = start;
1075 }
1076 }
1077 else if (charpos > endpos)
1078 {
1079 /* Search backward for a pattern that may be composed and the
1080 position of (possibly) the last character of the match is
1081 closest to (but not after) START. The reason for the last
1082 character is that set_iterator_to_next works in reverse order,
1083 and thus we must stop at the last character for composition
1084 check. */
1085 unsigned char *p;
1086 int len;
1087 /* Limit byte position used in fast_looking_at. This is the
1088 byte position of the character after START. */
1089 ptrdiff_t limit;
1090
1091 if (NILP (string))
1092 p = BYTE_POS_ADDR (bytepos);
1093 else
1094 p = SDATA (string) + bytepos;
1095 c = STRING_CHAR_AND_LENGTH (p, len);
1096 limit = bytepos + len;
1097 while (CHAR_COMPOSABLE_P (c))
1098 {
1099 val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1100 if (! NILP (val))
1101 {
1102 Lisp_Object elt;
1103 int ridx, blen;
1104
1105 for (ridx = 0; CONSP (val); val = XCDR (val), ridx++)
1106 {
1107 elt = XCAR (val);
1108 if (VECTORP (elt) && ASIZE (elt) == 3
1109 && NATNUMP (AREF (elt, 1))
1110 && charpos - XFASTINT (AREF (elt, 1)) > endpos)
1111 {
1112 ptrdiff_t back = XFASTINT (AREF (elt, 1));
1113 ptrdiff_t cpos = charpos - back, bpos;
1114
1115 if (back == 0)
1116 bpos = bytepos;
1117 else
1118 bpos = (NILP (string) ? CHAR_TO_BYTE (cpos)
1119 : string_char_to_byte (string, cpos));
1120 if (STRINGP (AREF (elt, 0)))
1121 blen = fast_looking_at (AREF (elt, 0), cpos, bpos,
1122 start + 1, limit, string);
1123 else
1124 blen = 1;
1125 if (blen > 0)
1126 {
1127 /* Make CPOS point to the last character of
1128 match. Note that BLEN is byte-length. */
1129 if (blen > 1)
1130 {
1131 bpos += blen;
1132 if (NILP (string))
1133 cpos = BYTE_TO_CHAR (bpos) - 1;
1134 else
1135 cpos = string_byte_to_char (string, bpos) - 1;
1136 }
1137 back = cpos - (charpos - back);
1138 if (cmp_it->stop_pos < cpos
1139 || (cmp_it->stop_pos == cpos
1140 && cmp_it->lookback < back))
1141 {
1142 cmp_it->rule_idx = ridx;
1143 cmp_it->stop_pos = cpos;
1144 cmp_it->ch = c;
1145 cmp_it->lookback = back;
1146 cmp_it->nchars = back + 1;
1147 }
1148 }
1149 }
1150 }
1151 }
1152 if (charpos - 1 == endpos)
1153 break;
1154 if (STRINGP (string))
1155 {
1156 p--, bytepos--;
1157 while (! CHAR_HEAD_P (*p))
1158 p--, bytepos--;
1159 charpos--;
1160 }
1161 else
1162 {
1163 DEC_BOTH (charpos, bytepos);
1164 p = BYTE_POS_ADDR (bytepos);
1165 }
1166 c = STRING_CHAR (p);
1167 }
1168 if (cmp_it->ch >= 0)
1169 /* We found a position to check. */
1170 return;
1171 /* Skip all uncomposable characters. */
1172 if (NILP (string))
1173 {
1174 while (charpos - 1 > endpos && ! CHAR_COMPOSABLE_P (c))
1175 {
1176 DEC_BOTH (charpos, bytepos);
1177 c = FETCH_MULTIBYTE_CHAR (bytepos);
1178 }
1179 }
1180 else
1181 {
1182 while (charpos - 1 > endpos && ! CHAR_COMPOSABLE_P (c))
1183 {
1184 p--;
1185 while (! CHAR_HEAD_P (*p))
1186 p--;
1187 charpos--;
1188 c = STRING_CHAR (p);
1189 }
1190 }
1191 }
1192 cmp_it->stop_pos = charpos;
1193 }
1194
1195 /* Check if the character at CHARPOS (and BYTEPOS) is composed
1196 (possibly with the following characters) on window W. ENDPOS limits
1197 characters to be composed. FACE, in non-NULL, is a base face of
1198 the character. If STRING is not nil, it is a string containing the
1199 character to check, and CHARPOS and BYTEPOS are indices in the
1200 string. In that case, FACE must not be NULL.
1201
1202 If the character is composed, setup members of CMP_IT (id, nglyphs,
1203 from, to, reversed_p), and return true. Otherwise, update
1204 CMP_IT->stop_pos, and return false. */
1205
1206 bool
1207 composition_reseat_it (struct composition_it *cmp_it, ptrdiff_t charpos,
1208 ptrdiff_t bytepos, ptrdiff_t endpos, struct window *w,
1209 struct face *face, Lisp_Object string)
1210 {
1211 if (cmp_it->ch == -2)
1212 {
1213 composition_compute_stop_pos (cmp_it, charpos, bytepos, endpos, string);
1214 if (cmp_it->ch == -2 || cmp_it->stop_pos != charpos)
1215 /* The current position is not composed. */
1216 return 0;
1217 }
1218
1219 if (endpos < 0)
1220 endpos = NILP (string) ? BEGV : 0;
1221
1222 if (cmp_it->ch < 0)
1223 {
1224 /* We are looking at a static composition. */
1225 ptrdiff_t start, end;
1226 Lisp_Object prop;
1227
1228 find_composition (charpos, -1, &start, &end, &prop, string);
1229 cmp_it->id = get_composition_id (charpos, bytepos, end - start,
1230 prop, string);
1231 if (cmp_it->id < 0)
1232 goto no_composition;
1233 cmp_it->nchars = end - start;
1234 cmp_it->nglyphs = composition_table[cmp_it->id]->glyph_len;
1235 }
1236 else if (w)
1237 {
1238 Lisp_Object lgstring = Qnil;
1239 Lisp_Object val, elt;
1240 ptrdiff_t i;
1241
1242 val = CHAR_TABLE_REF (Vcomposition_function_table, cmp_it->ch);
1243 for (i = 0; i < cmp_it->rule_idx; i++, val = XCDR (val));
1244 if (charpos < endpos)
1245 {
1246 for (; CONSP (val); val = XCDR (val))
1247 {
1248 elt = XCAR (val);
1249 if (! VECTORP (elt) || ASIZE (elt) != 3
1250 || ! INTEGERP (AREF (elt, 1)))
1251 continue;
1252 if (XFASTINT (AREF (elt, 1)) != cmp_it->lookback)
1253 goto no_composition;
1254 lgstring = autocmp_chars (elt, charpos, bytepos, endpos,
1255 w, face, string);
1256 if (composition_gstring_p (lgstring))
1257 break;
1258 lgstring = Qnil;
1259 /* Composition failed perhaps because the font doesn't
1260 support sufficient range of characters. Try the
1261 other composition rules if any. */
1262 }
1263 cmp_it->reversed_p = 0;
1264 }
1265 else
1266 {
1267 ptrdiff_t cpos = charpos, bpos = bytepos;
1268
1269 cmp_it->reversed_p = 1;
1270 elt = XCAR (val);
1271 if (cmp_it->lookback > 0)
1272 {
1273 cpos = charpos - cmp_it->lookback;
1274 if (STRINGP (string))
1275 bpos = string_char_to_byte (string, cpos);
1276 else
1277 bpos = CHAR_TO_BYTE (cpos);
1278 }
1279 lgstring = autocmp_chars (elt, cpos, bpos, charpos + 1, w, face,
1280 string);
1281 if (! composition_gstring_p (lgstring)
1282 || cpos + LGSTRING_CHAR_LEN (lgstring) - 1 != charpos)
1283 /* Composition failed or didn't cover the current
1284 character. */
1285 goto no_composition;
1286 }
1287 if (NILP (lgstring))
1288 goto no_composition;
1289 if (NILP (LGSTRING_ID (lgstring)))
1290 lgstring = composition_gstring_put_cache (lgstring, -1);
1291 cmp_it->id = XINT (LGSTRING_ID (lgstring));
1292 for (i = 0; i < LGSTRING_GLYPH_LEN (lgstring); i++)
1293 if (NILP (LGSTRING_GLYPH (lgstring, i)))
1294 break;
1295 cmp_it->nglyphs = i;
1296 cmp_it->from = 0;
1297 cmp_it->to = i;
1298 }
1299 else
1300 goto no_composition;
1301 return 1;
1302
1303 no_composition:
1304 if (charpos == endpos)
1305 return 0;
1306 if (charpos < endpos)
1307 {
1308 charpos++;
1309 if (NILP (string))
1310 INC_POS (bytepos);
1311 else
1312 bytepos += BYTES_BY_CHAR_HEAD (*(SDATA (string) + bytepos));
1313 }
1314 else
1315 {
1316 charpos--;
1317 /* BYTEPOS is calculated in composition_compute_stop_pos */
1318 bytepos = -1;
1319 }
1320 if (cmp_it->reversed_p)
1321 endpos = -1;
1322 composition_compute_stop_pos (cmp_it, charpos, bytepos, endpos, string);
1323 return 0;
1324 }
1325
1326 /* Update charpos, nchars, nbytes, and width of the current grapheme
1327 cluster.
1328
1329 If the composition is static or automatic in L2R context, the
1330 cluster is identified by CMP_IT->from, and CHARPOS is the position
1331 of the first character of the cluster. In this case, update
1332 CMP_IT->to too.
1333
1334 If the composition is automatic in R2L context, the cluster is
1335 identified by CMP_IT->to, and CHARPOS is the position of the last
1336 character of the cluster. In this case, update CMP_IT->from too.
1337
1338 The return value is the character code of the first character of
1339 the cluster, or -1 if the composition is somehow broken. */
1340
1341 int
1342 composition_update_it (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff_t bytepos, Lisp_Object string)
1343 {
1344 int i, c IF_LINT (= 0);
1345
1346 if (cmp_it->ch < 0)
1347 {
1348 /* static composition */
1349 struct composition *cmp = composition_table[cmp_it->id];
1350
1351 cmp_it->charpos = charpos;
1352 cmp_it->to = cmp_it->nglyphs;
1353 if (cmp_it->nglyphs == 0)
1354 c = -1;
1355 else
1356 {
1357 for (i = 0; i < cmp->glyph_len; i++)
1358 /* TAB in a composition means display glyphs with padding
1359 space on the left or right. */
1360 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
1361 break;
1362 if (c == '\t')
1363 c = ' ';
1364 }
1365 cmp_it->width = cmp->width;
1366 charpos += cmp_it->nchars;
1367 if (STRINGP (string))
1368 cmp_it->nbytes = string_char_to_byte (string, charpos) - bytepos;
1369 else
1370 cmp_it->nbytes = CHAR_TO_BYTE (charpos) - bytepos;
1371 }
1372 else
1373 {
1374 /* Automatic composition. */
1375 Lisp_Object gstring = composition_gstring_from_id (cmp_it->id);
1376 Lisp_Object glyph;
1377 ptrdiff_t from;
1378
1379 if (cmp_it->nglyphs == 0)
1380 {
1381 cmp_it->nchars = LGSTRING_CHAR_LEN (gstring);
1382 cmp_it->width = 0;
1383 cmp_it->from = cmp_it->to = 0;
1384 return -1;
1385 }
1386 if (! cmp_it->reversed_p)
1387 {
1388 glyph = LGSTRING_GLYPH (gstring, cmp_it->from);
1389 from = LGLYPH_FROM (glyph);
1390 for (cmp_it->to = cmp_it->from + 1; cmp_it->to < cmp_it->nglyphs;
1391 cmp_it->to++)
1392 {
1393 glyph = LGSTRING_GLYPH (gstring, cmp_it->to);
1394 if (LGLYPH_FROM (glyph) != from)
1395 break;
1396 }
1397 cmp_it->charpos = charpos;
1398 }
1399 else
1400 {
1401 glyph = LGSTRING_GLYPH (gstring, cmp_it->to - 1);
1402 from = LGLYPH_FROM (glyph);
1403 cmp_it->charpos = charpos - (LGLYPH_TO (glyph) - from);
1404 for (cmp_it->from = cmp_it->to - 1; cmp_it->from > 0;
1405 cmp_it->from--)
1406 {
1407 glyph = LGSTRING_GLYPH (gstring, cmp_it->from - 1);
1408 if (LGLYPH_FROM (glyph) != from)
1409 break;
1410 }
1411 }
1412 glyph = LGSTRING_GLYPH (gstring, cmp_it->from);
1413 cmp_it->nchars = LGLYPH_TO (glyph) + 1 - from;
1414 cmp_it->nbytes = 0;
1415 cmp_it->width = 0;
1416 for (i = cmp_it->nchars - 1; i >= 0; i--)
1417 {
1418 c = XINT (LGSTRING_CHAR (gstring, i));
1419 cmp_it->nbytes += CHAR_BYTES (c);
1420 cmp_it->width += CHAR_WIDTH (c);
1421 }
1422 }
1423 return c;
1424 }
1425
1426
1427 struct position_record
1428 {
1429 ptrdiff_t pos, pos_byte;
1430 unsigned char *p;
1431 };
1432
1433 /* Update the members of POSITION to the next character boundary. */
1434 #define FORWARD_CHAR(POSITION, STOP) \
1435 do { \
1436 (POSITION).pos++; \
1437 if ((POSITION).pos == (STOP)) \
1438 { \
1439 (POSITION).p = GAP_END_ADDR; \
1440 (POSITION).pos_byte = GPT_BYTE; \
1441 } \
1442 else \
1443 { \
1444 (POSITION).pos_byte += BYTES_BY_CHAR_HEAD (*((POSITION).p)); \
1445 (POSITION).p += BYTES_BY_CHAR_HEAD (*((POSITION).p)); \
1446 } \
1447 } while (0)
1448
1449 /* Update the members of POSITION to the previous character boundary. */
1450 #define BACKWARD_CHAR(POSITION, STOP) \
1451 do { \
1452 if ((POSITION).pos == (STOP)) \
1453 (POSITION).p = GPT_ADDR; \
1454 do { \
1455 (POSITION).pos_byte--; \
1456 (POSITION).p--; \
1457 } while (! CHAR_HEAD_P (*((POSITION).p))); \
1458 (POSITION).pos--; \
1459 } while (0)
1460
1461 /* This is like find_composition, but find an automatic composition
1462 instead. It is assured that POS is not within a static
1463 composition. If found, set *GSTRING to the glyph-string
1464 representing the composition, and return true. Otherwise, *GSTRING to
1465 Qnil, and return false. */
1466
1467 static bool
1468 find_automatic_composition (ptrdiff_t pos, ptrdiff_t limit,
1469 ptrdiff_t *start, ptrdiff_t *end,
1470 Lisp_Object *gstring, Lisp_Object string)
1471 {
1472 ptrdiff_t head, tail, stop;
1473 /* Forward limit position of checking a composition taking a
1474 looking-back count into account. */
1475 ptrdiff_t fore_check_limit;
1476 struct position_record cur, prev;
1477 int c;
1478 Lisp_Object window;
1479 struct window *w;
1480 bool need_adjustment = 0;
1481
1482 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1483 if (NILP (window))
1484 return 0;
1485 w = XWINDOW (window);
1486
1487 cur.pos = pos;
1488 if (NILP (string))
1489 {
1490 head = BEGV, tail = ZV, stop = GPT;
1491 cur.pos_byte = CHAR_TO_BYTE (cur.pos);
1492 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1493 }
1494 else
1495 {
1496 head = 0, tail = SCHARS (string), stop = -1;
1497 cur.pos_byte = string_char_to_byte (string, cur.pos);
1498 cur.p = SDATA (string) + cur.pos_byte;
1499 }
1500 if (limit < 0)
1501 /* Finding a composition covering the character after POS is the
1502 same as setting LIMIT to POS. */
1503 limit = pos;
1504 if (limit <= pos)
1505 fore_check_limit = min (tail, pos + 1 + MAX_AUTO_COMPOSITION_LOOKBACK);
1506 else
1507 fore_check_limit = min (tail, limit + MAX_AUTO_COMPOSITION_LOOKBACK);
1508
1509 /* Provided that we have these possible compositions now:
1510
1511 POS: 1 2 3 4 5 6 7 8 9
1512 |-A-|
1513 |-B-|-C-|--D--|
1514
1515 Here, it is known that characters after positions 1 and 9 can
1516 never be composed (i.e. ! CHAR_COMPOSABLE_P (CH)), and
1517 composition A is an invalid one because it's partially covered by
1518 the valid composition C. And to know whether a composition is
1519 valid or not, the only way is to start searching forward from a
1520 position that can not be a tail part of composition (it's 2 in
1521 the above case).
1522
1523 Now we have these cases (1 through 4):
1524
1525 -- character after POS is ... --
1526 not composable composable
1527 LIMIT <= POS (1) (3)
1528 POS < LIMIT (2) (4)
1529
1530 Among them, in case (2), we simply search forward from POS.
1531
1532 In the other cases, we at first rewind back to the position where
1533 the previous character is not composable or the beginning of
1534 buffer (string), then search compositions forward. In case (1)
1535 and (3) we repeat this process until a composition is found. */
1536
1537 while (1)
1538 {
1539 c = STRING_CHAR (cur.p);
1540 if (! CHAR_COMPOSABLE_P (c))
1541 {
1542 if (limit <= pos) /* case (1) */
1543 {
1544 do {
1545 if (cur.pos <= limit)
1546 return 0;
1547 BACKWARD_CHAR (cur, stop);
1548 c = STRING_CHAR (cur.p);
1549 } while (! CHAR_COMPOSABLE_P (c));
1550 fore_check_limit = cur.pos + 1;
1551 }
1552 else /* case (2) */
1553 /* No need of rewinding back. */
1554 goto search_forward;
1555 }
1556
1557 /* Rewind back to the position where we can safely search
1558 forward for compositions. It is assured that the character
1559 at cur.pos is composable. */
1560 while (head < cur.pos)
1561 {
1562 prev = cur;
1563 BACKWARD_CHAR (cur, stop);
1564 c = STRING_CHAR (cur.p);
1565 if (! CHAR_COMPOSABLE_P (c))
1566 {
1567 cur = prev;
1568 break;
1569 }
1570 }
1571
1572 search_forward:
1573 /* Now search forward. */
1574 *gstring = Qnil;
1575 prev = cur; /* remember the start of searching position. */
1576 while (cur.pos < fore_check_limit)
1577 {
1578 Lisp_Object val;
1579
1580 c = STRING_CHAR (cur.p);
1581 for (val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1582 CONSP (val); val = XCDR (val))
1583 {
1584 Lisp_Object elt = XCAR (val);
1585
1586 if (VECTORP (elt) && ASIZE (elt) == 3 && NATNUMP (AREF (elt, 1)))
1587 {
1588 EMACS_INT check_pos = cur.pos - XFASTINT (AREF (elt, 1));
1589 struct position_record check;
1590
1591 if (check_pos < head
1592 || (limit <= pos ? pos < check_pos
1593 : limit <= check_pos))
1594 continue;
1595 for (check = cur; check_pos < check.pos; )
1596 BACKWARD_CHAR (check, stop);
1597 *gstring = autocmp_chars (elt, check.pos, check.pos_byte,
1598 tail, w, NULL, string);
1599 need_adjustment = 1;
1600 if (NILP (*gstring))
1601 {
1602 /* As we have called Lisp, there's a possibility
1603 that buffer/string is relocated. */
1604 if (NILP (string))
1605 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1606 else
1607 cur.p = SDATA (string) + cur.pos_byte;
1608 }
1609 else
1610 {
1611 /* We found a candidate of a target composition. */
1612 *start = check.pos;
1613 *end = check.pos + LGSTRING_CHAR_LEN (*gstring);
1614 if (pos < limit
1615 ? pos < *end
1616 : *start <= pos && pos < *end)
1617 /* This is the target composition. */
1618 return 1;
1619 cur.pos = *end;
1620 if (NILP (string))
1621 {
1622 cur.pos_byte = CHAR_TO_BYTE (cur.pos);
1623 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1624 }
1625 else
1626 {
1627 cur.pos_byte = string_char_to_byte (string, cur.pos);
1628 cur.p = SDATA (string) + cur.pos_byte;
1629 }
1630 break;
1631 }
1632 }
1633 }
1634 if (! CONSP (val))
1635 /* We found no composition here. */
1636 FORWARD_CHAR (cur, stop);
1637 }
1638
1639 if (pos < limit) /* case (2) and (4)*/
1640 return 0;
1641 if (! NILP (*gstring))
1642 return 1;
1643 if (prev.pos == head)
1644 return 0;
1645 cur = prev;
1646 if (need_adjustment)
1647 {
1648 if (NILP (string))
1649 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1650 else
1651 cur.p = SDATA (string) + cur.pos_byte;
1652 }
1653 BACKWARD_CHAR (cur, stop);
1654 }
1655 }
1656
1657 /* Return the adjusted point provided that point is moved from LAST_PT
1658 to NEW_PT. */
1659
1660 ptrdiff_t
1661 composition_adjust_point (ptrdiff_t last_pt, ptrdiff_t new_pt)
1662 {
1663 ptrdiff_t i, beg, end;
1664 Lisp_Object val;
1665
1666 if (new_pt == BEGV || new_pt == ZV)
1667 return new_pt;
1668
1669 /* At first check the static composition. */
1670 if (get_property_and_range (new_pt, Qcomposition, &val, &beg, &end, Qnil)
1671 && composition_valid_p (beg, end, val))
1672 {
1673 if (beg < new_pt /* && end > new_pt <- It's always the case. */
1674 && (last_pt <= beg || last_pt >= end))
1675 return (new_pt < last_pt ? beg : end);
1676 return new_pt;
1677 }
1678
1679 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
1680 || NILP (Vauto_composition_mode))
1681 return new_pt;
1682
1683 /* Next check the automatic composition. */
1684 if (! find_automatic_composition (new_pt, (ptrdiff_t) -1, &beg, &end, &val,
1685 Qnil)
1686 || beg == new_pt)
1687 return new_pt;
1688 for (i = 0; i < LGSTRING_GLYPH_LEN (val); i++)
1689 {
1690 Lisp_Object glyph = LGSTRING_GLYPH (val, i);
1691
1692 if (NILP (glyph))
1693 break;
1694 if (beg + LGLYPH_FROM (glyph) == new_pt)
1695 return new_pt;
1696 if (beg + LGLYPH_TO (glyph) >= new_pt)
1697 return (new_pt < last_pt
1698 ? beg + LGLYPH_FROM (glyph)
1699 : beg + LGLYPH_TO (glyph) + 1);
1700 }
1701 return new_pt;
1702 }
1703
1704 DEFUN ("composition-get-gstring", Fcomposition_get_gstring,
1705 Scomposition_get_gstring, 4, 4, 0,
1706 doc: /* Return a glyph-string for characters between FROM and TO.
1707 If the glyph string is for graphic display, FONT-OBJECT must be
1708 a font-object to use for those characters.
1709 Otherwise (for terminal display), FONT-OBJECT must be a terminal ID, a
1710 frame, or nil for the selected frame's terminal device.
1711
1712 If the optional 4th argument STRING is not nil, it is a string
1713 containing the target characters between indices FROM and TO.
1714
1715 A glyph-string is a vector containing information about how to display
1716 a specific character sequence. The format is:
1717 [HEADER ID GLYPH ...]
1718
1719 HEADER is a vector of this form:
1720 [FONT-OBJECT CHAR ...]
1721 where
1722 FONT-OBJECT is a font-object for all glyphs in the glyph-string,
1723 or the terminal coding system of the specified terminal.
1724 CHARs are characters to be composed by GLYPHs.
1725
1726 ID is an identification number of the glyph-string. It may be nil if
1727 not yet shaped.
1728
1729 GLYPH is a vector whose elements have this form:
1730 [ FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT
1731 [ [X-OFF Y-OFF WADJUST] | nil] ]
1732 where
1733 FROM-IDX and TO-IDX are used internally and should not be touched.
1734 C is the character of the glyph.
1735 CODE is the glyph-code of C in FONT-OBJECT.
1736 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
1737 X-OFF and Y-OFF are offsets to the base position for the glyph.
1738 WADJUST is the adjustment to the normal width of the glyph.
1739
1740 If GLYPH is nil, the remaining elements of the glyph-string vector
1741 should be ignored. */)
1742 (Lisp_Object from, Lisp_Object to, Lisp_Object font_object, Lisp_Object string)
1743 {
1744 Lisp_Object gstring, header;
1745 ptrdiff_t frompos, topos;
1746
1747 CHECK_NATNUM (from);
1748 CHECK_NATNUM (to);
1749 if (! FONT_OBJECT_P (font_object))
1750 {
1751 struct coding_system *coding;
1752 struct terminal *terminal = get_terminal (font_object, 1);
1753
1754 coding = ((TERMINAL_TERMINAL_CODING (terminal)->common_flags
1755 & CODING_REQUIRE_ENCODING_MASK)
1756 ? TERMINAL_TERMINAL_CODING (terminal) : &safe_terminal_coding);
1757 font_object = CODING_ID_NAME (coding->id);
1758 }
1759
1760 header = fill_gstring_header (Qnil, from, to, font_object, string);
1761 gstring = gstring_lookup_cache (header);
1762 if (! NILP (gstring))
1763 return gstring;
1764
1765 frompos = XINT (from);
1766 topos = XINT (to);
1767 if (LGSTRING_GLYPH_LEN (gstring_work) < topos - frompos)
1768 gstring_work = Fmake_vector (make_number (topos - frompos + 2), Qnil);
1769 LGSTRING_SET_HEADER (gstring_work, header);
1770 LGSTRING_SET_ID (gstring_work, Qnil);
1771 fill_gstring_body (gstring_work);
1772 return gstring_work;
1773 }
1774
1775 \f
1776 /* Emacs Lisp APIs. */
1777
1778 DEFUN ("compose-region-internal", Fcompose_region_internal,
1779 Scompose_region_internal, 2, 4, 0,
1780 doc: /* Internal use only.
1781
1782 Compose text in the region between START and END.
1783 Optional 3rd and 4th arguments are COMPONENTS and MODIFICATION-FUNC
1784 for the composition. See `compose-region' for more details. */)
1785 (Lisp_Object start, Lisp_Object end, Lisp_Object components, Lisp_Object modification_func)
1786 {
1787 validate_region (&start, &end);
1788 if (!NILP (components)
1789 && !INTEGERP (components)
1790 && !CONSP (components)
1791 && !STRINGP (components))
1792 CHECK_VECTOR (components);
1793
1794 compose_text (XINT (start), XINT (end), components, modification_func, Qnil);
1795 return Qnil;
1796 }
1797
1798 DEFUN ("compose-string-internal", Fcompose_string_internal,
1799 Scompose_string_internal, 3, 5, 0,
1800 doc: /* Internal use only.
1801
1802 Compose text between indices START and END of STRING.
1803 Optional 4th and 5th arguments are COMPONENTS and MODIFICATION-FUNC
1804 for the composition. See `compose-string' for more details. */)
1805 (Lisp_Object string, Lisp_Object start, Lisp_Object end, Lisp_Object components, Lisp_Object modification_func)
1806 {
1807 CHECK_STRING (string);
1808 CHECK_NUMBER (start);
1809 CHECK_NUMBER (end);
1810
1811 if (XINT (start) < 0 ||
1812 XINT (start) > XINT (end)
1813 || XINT (end) > SCHARS (string))
1814 args_out_of_range (start, end);
1815
1816 compose_text (XINT (start), XINT (end), components, modification_func, string);
1817 return string;
1818 }
1819
1820 DEFUN ("find-composition-internal", Ffind_composition_internal,
1821 Sfind_composition_internal, 4, 4, 0,
1822 doc: /* Internal use only.
1823
1824 Return information about composition at or nearest to position POS.
1825 See `find-composition' for more details. */)
1826 (Lisp_Object pos, Lisp_Object limit, Lisp_Object string, Lisp_Object detail_p)
1827 {
1828 Lisp_Object prop, tail, gstring;
1829 ptrdiff_t start, end, from, to;
1830 int id;
1831
1832 CHECK_NUMBER_COERCE_MARKER (pos);
1833 if (!NILP (limit))
1834 {
1835 CHECK_NUMBER_COERCE_MARKER (limit);
1836 to = min (XINT (limit), ZV);
1837 }
1838 else
1839 to = -1;
1840
1841 if (!NILP (string))
1842 {
1843 CHECK_STRING (string);
1844 if (XINT (pos) < 0 || XINT (pos) > SCHARS (string))
1845 args_out_of_range (string, pos);
1846 }
1847 else
1848 {
1849 if (XINT (pos) < BEGV || XINT (pos) > ZV)
1850 args_out_of_range (Fcurrent_buffer (), pos);
1851 }
1852 from = XINT (pos);
1853
1854 if (!find_composition (from, to, &start, &end, &prop, string))
1855 {
1856 if (!NILP (BVAR (current_buffer, enable_multibyte_characters))
1857 && ! NILP (Vauto_composition_mode)
1858 && find_automatic_composition (from, to, &start, &end, &gstring,
1859 string))
1860 return list3 (make_number (start), make_number (end), gstring);
1861 return Qnil;
1862 }
1863 if ((end <= XINT (pos) || start > XINT (pos)))
1864 {
1865 ptrdiff_t s, e;
1866
1867 if (find_automatic_composition (from, to, &s, &e, &gstring, string)
1868 && (e <= XINT (pos) ? e > end : s < start))
1869 return list3 (make_number (s), make_number (e), gstring);
1870 }
1871 if (!composition_valid_p (start, end, prop))
1872 return list3 (make_number (start), make_number (end), Qnil);
1873 if (NILP (detail_p))
1874 return list3 (make_number (start), make_number (end), Qt);
1875
1876 if (composition_registered_p (prop))
1877 id = COMPOSITION_ID (prop);
1878 else
1879 {
1880 ptrdiff_t start_byte = (NILP (string)
1881 ? CHAR_TO_BYTE (start)
1882 : string_char_to_byte (string, start));
1883 id = get_composition_id (start, start_byte, end - start, prop, string);
1884 }
1885
1886 if (id >= 0)
1887 {
1888 Lisp_Object components, relative_p, mod_func;
1889 enum composition_method method = composition_method (prop);
1890 int width = composition_table[id]->width;
1891
1892 components = Fcopy_sequence (COMPOSITION_COMPONENTS (prop));
1893 relative_p = (method == COMPOSITION_WITH_RULE_ALTCHARS
1894 ? Qnil : Qt);
1895 mod_func = COMPOSITION_MODIFICATION_FUNC (prop);
1896 tail = list4 (components, relative_p, mod_func, make_number (width));
1897 }
1898 else
1899 tail = Qnil;
1900
1901 return Fcons (make_number (start), Fcons (make_number (end), tail));
1902 }
1903
1904 \f
1905 void
1906 syms_of_composite (void)
1907 {
1908 int i;
1909
1910 DEFSYM (Qcomposition, "composition");
1911
1912 /* Make a hash table for static composition. */
1913 {
1914 Lisp_Object args[6];
1915
1916 args[0] = QCtest;
1917 args[1] = Qequal;
1918 args[2] = QCweakness;
1919 /* We used to make the hash table weak so that unreferenced
1920 compositions can be garbage-collected. But, usually once
1921 created compositions are repeatedly used in an Emacs session,
1922 and thus it's not worth to save memory in such a way. So, we
1923 make the table not weak. */
1924 args[3] = Qnil;
1925 args[4] = QCsize;
1926 args[5] = make_number (311);
1927 composition_hash_table = Fmake_hash_table (6, args);
1928 staticpro (&composition_hash_table);
1929 }
1930
1931 /* Make a hash table for glyph-string. */
1932 {
1933 Lisp_Object args[6];
1934 args[0] = QCtest;
1935 args[1] = Qequal;
1936 args[2] = QCweakness;
1937 args[3] = Qnil;
1938 args[4] = QCsize;
1939 args[5] = make_number (311);
1940 gstring_hash_table = Fmake_hash_table (6, args);
1941 staticpro (&gstring_hash_table);
1942 }
1943
1944 staticpro (&gstring_work_headers);
1945 gstring_work_headers = make_uninit_vector (8);
1946 for (i = 0; i < 8; i++)
1947 ASET (gstring_work_headers, i, Fmake_vector (make_number (i + 2), Qnil));
1948 staticpro (&gstring_work);
1949 gstring_work = Fmake_vector (make_number (10), Qnil);
1950
1951 /* Text property `composition' should be nonsticky by default. */
1952 Vtext_property_default_nonsticky
1953 = Fcons (Fcons (Qcomposition, Qt), Vtext_property_default_nonsticky);
1954
1955 DEFVAR_LISP ("compose-chars-after-function", Vcompose_chars_after_function,
1956 doc: /* Function to adjust composition of buffer text.
1957
1958 This function is called with three arguments: FROM, TO, and OBJECT.
1959 FROM and TO specify the range of text whose composition should be
1960 adjusted. OBJECT, if non-nil, is a string that contains the text.
1961
1962 This function is called after a text with `composition' property is
1963 inserted or deleted to keep `composition' property of buffer text
1964 valid.
1965
1966 The default value is the function `compose-chars-after'. */);
1967 Vcompose_chars_after_function = intern_c_string ("compose-chars-after");
1968
1969 DEFSYM (Qauto_composed, "auto-composed");
1970 DEFSYM (Qauto_composition_function, "auto-composition-function");
1971
1972 DEFVAR_LISP ("auto-composition-mode", Vauto_composition_mode,
1973 doc: /* Non-nil if Auto-Composition mode is enabled.
1974 Use the command `auto-composition-mode' to change this variable. */);
1975 Vauto_composition_mode = Qt;
1976
1977 DEFVAR_LISP ("auto-composition-function", Vauto_composition_function,
1978 doc: /* Function to call to compose characters automatically.
1979 This function is called from the display routine with four arguments:
1980 FROM, TO, WINDOW, and STRING.
1981
1982 If STRING is nil, the function must compose characters in the region
1983 between FROM and TO in the current buffer.
1984
1985 Otherwise, STRING is a string, and FROM and TO are indices into the
1986 string. In this case, the function must compose characters in the
1987 string. */);
1988 Vauto_composition_function = Qnil;
1989
1990 DEFVAR_LISP ("composition-function-table", Vcomposition_function_table,
1991 doc: /* Char-table of functions for automatic character composition.
1992 For each character that has to be composed automatically with
1993 preceding and/or following characters, this char-table contains
1994 a function to call to compose that character.
1995
1996 The element at index C in the table, if non-nil, is a list of
1997 composition rules of this form: ([PATTERN PREV-CHARS FUNC] ...)
1998
1999 PATTERN is a regular expression which C and the surrounding
2000 characters must match.
2001
2002 PREV-CHARS is a non-negative integer (less than 4) specifying how many
2003 characters before C to check the matching with PATTERN. If it is 0,
2004 PATTERN must match C and the following characters. If it is 1,
2005 PATTERN must match a character before C and the following characters.
2006
2007 If PREV-CHARS is 0, PATTERN can be nil, which means that the
2008 single character C should be composed.
2009
2010 FUNC is a function to return a glyph-string representing a
2011 composition of the characters that match PATTERN. It is
2012 called with one argument GSTRING.
2013
2014 GSTRING is a template of a glyph-string to return. It is already
2015 filled with a proper header for the characters to compose, and
2016 glyphs corresponding to those characters one by one. The
2017 function must return a new glyph-string with the same header as
2018 GSTRING, or modify GSTRING itself and return it.
2019
2020 See also the documentation of `auto-composition-mode'. */);
2021 Vcomposition_function_table = Fmake_char_table (Qnil, Qnil);
2022
2023 defsubr (&Scompose_region_internal);
2024 defsubr (&Scompose_string_internal);
2025 defsubr (&Sfind_composition_internal);
2026 defsubr (&Scomposition_get_gstring);
2027 }