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