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