Remove support for Mac Carbon.
[bpt/emacs.git] / src / fontset.c
1 /* Fontset handler.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8 Copyright (C) 2003, 2006
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
11
12 This file is part of GNU Emacs.
13
14 GNU Emacs is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 GNU Emacs is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26
27 /* #define FONTSET_DEBUG */
28
29 #include <config.h>
30 #include <stdio.h>
31
32 #include "lisp.h"
33 #include "blockinput.h"
34 #include "buffer.h"
35 #include "character.h"
36 #include "charset.h"
37 #include "ccl.h"
38 #include "keyboard.h"
39 #include "frame.h"
40 #include "dispextern.h"
41 #include "intervals.h"
42 #include "fontset.h"
43 #include "window.h"
44 #ifdef HAVE_X_WINDOWS
45 #include "xterm.h"
46 #endif
47 #ifdef WINDOWSNT
48 #include "w32term.h"
49 #endif
50 #ifdef HAVE_NS
51 #include "nsterm.h"
52 #endif
53 #include "termhooks.h"
54
55 #include "font.h"
56
57 #undef xassert
58 #ifdef FONTSET_DEBUG
59 #define xassert(X) do {if (!(X)) abort ();} while (0)
60 #undef INLINE
61 #define INLINE
62 #else /* not FONTSET_DEBUG */
63 #define xassert(X) (void) 0
64 #endif /* not FONTSET_DEBUG */
65
66 EXFUN (Fclear_face_cache, 1);
67
68 /* FONTSET
69
70 A fontset is a collection of font related information to give
71 similar appearance (style, etc) of characters. A fontset has two
72 roles. One is to use for the frame parameter `font' as if it is an
73 ASCII font. In that case, Emacs uses the font specified for
74 `ascii' script for the frame's default font.
75
76 Another role, the more important one, is to provide information
77 about which font to use for each non-ASCII character.
78
79 There are two kinds of fontsets; base and realized. A base fontset
80 is created by `new-fontset' from Emacs Lisp explicitly. A realized
81 fontset is created implicitly when a face is realized for ASCII
82 characters. A face is also realized for non-ASCII characters based
83 on an ASCII face. All of non-ASCII faces based on the same ASCII
84 face share the same realized fontset.
85
86 A fontset object is implemented by a char-table whose default value
87 and parent are always nil.
88
89 An element of a base fontset is a vector of FONT-DEFs which itself
90 is a vector [ FONT-SPEC ENCODING REPERTORY ].
91
92 An element of a realized fontset is nil, t, or a vector of this form:
93
94 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
95 RFONT-DEF0 RFONT-DEF1 ... ]
96
97 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
98
99 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
100
101 RFONT-DEFn are automatically reordered by the current charset
102 priority list.
103
104 The value nil means that we have not yet generated the above vector
105 from the base of the fontset.
106
107 The value t means that no font is available for the corresponding
108 range of characters.
109
110
111 A fontset has 9 extra slots.
112
113 The 1st slot: the ID number of the fontset
114
115 The 2nd slot:
116 base: the name of the fontset
117 realized: nil
118
119 The 3rd slot:
120 base: nil
121 realized: the base fontset
122
123 The 4th slot:
124 base: nil
125 realized: the frame that the fontset belongs to
126
127 The 5th slot:
128 base: the font name for ASCII characters
129 realized: nil
130
131 The 6th slot:
132 base: nil
133 realized: the ID number of a face to use for characters that
134 has no font in a realized fontset.
135
136 The 7th slot:
137 base: nil
138 realized: Alist of font index vs the corresponding repertory
139 char-table.
140
141 The 8th slot:
142 base: nil
143 realized: If the base is not the default fontset, a fontset
144 realized from the default fontset, else nil.
145
146 The 9th slot:
147 base: Same as element value (but for fallback fonts).
148 realized: Likewise.
149
150 All fontsets are recorded in the vector Vfontset_table.
151
152
153 DEFAULT FONTSET
154
155 There's a special base fontset named `default fontset' which
156 defines the default font specifications. When a base fontset
157 doesn't specify a font for a specific character, the corresponding
158 value in the default fontset is used.
159
160 The parent of a realized fontset created for such a face that has
161 no fontset is the default fontset.
162
163
164 These structures are hidden from the other codes than this file.
165 The other codes handle fontsets only by their ID numbers. They
166 usually use the variable name `fontset' for IDs. But, in this
167 file, we always use varialbe name `id' for IDs, and name `fontset'
168 for an actual fontset object, i.e., char-table.
169
170 */
171
172 /********** VARIABLES and FUNCTION PROTOTYPES **********/
173
174 extern Lisp_Object Qfont;
175 static Lisp_Object Qfontset;
176 static Lisp_Object Qfontset_info;
177 static Lisp_Object Qprepend, Qappend;
178 static Lisp_Object Qlatin;
179
180 /* Vector containing all fontsets. */
181 static Lisp_Object Vfontset_table;
182
183 /* Next possibly free fontset ID. Usually this keeps the minimum
184 fontset ID not yet used. */
185 static int next_fontset_id;
186
187 /* The default fontset. This gives default FAMILY and REGISTRY of
188 font for each character. */
189 static Lisp_Object Vdefault_fontset;
190
191 Lisp_Object Vfont_encoding_charset_alist;
192 Lisp_Object Vuse_default_ascent;
193 Lisp_Object Vignore_relative_composition;
194 Lisp_Object Valternate_fontname_alist;
195 Lisp_Object Vfontset_alias_alist;
196 Lisp_Object Vvertical_centering_font_regexp;
197 Lisp_Object Votf_script_alist;
198
199 /* Check if any window system is used now. */
200 void (*check_window_system_func) P_ ((void));
201
202
203 /* Prototype declarations for static functions. */
204 static Lisp_Object fontset_add P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
205 Lisp_Object));
206 static Lisp_Object fontset_find_font P_ ((Lisp_Object, int, struct face *,
207 int, int));
208 static void reorder_font_vector P_ ((Lisp_Object, struct font *));
209 static Lisp_Object fontset_font P_ ((Lisp_Object, int, struct face *, int));
210 static Lisp_Object make_fontset P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
211 static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object));
212 static void accumulate_script_ranges P_ ((Lisp_Object, Lisp_Object,
213 Lisp_Object));
214 Lisp_Object find_font_encoding P_ ((Lisp_Object));
215
216 static void set_fontset_font P_ ((Lisp_Object, Lisp_Object));
217
218 #ifdef FONTSET_DEBUG
219
220 /* Return 1 if ID is a valid fontset id, else return 0. */
221
222 static int
223 fontset_id_valid_p (id)
224 int id;
225 {
226 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
227 }
228
229 #endif
230
231
232 \f
233 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
234
235 /* Return the fontset with ID. No check of ID's validness. */
236 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
237
238 /* Macros to access special values of FONTSET. */
239 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
240
241 /* Macros to access special values of (base) FONTSET. */
242 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
243 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
244 #define FONTSET_SPEC(fontset) XCHAR_TABLE (fontset)->extras[5]
245
246 /* Macros to access special values of (realized) FONTSET. */
247 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
248 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
249 #define FONTSET_OBJLIST(fontset) XCHAR_TABLE (fontset)->extras[4]
250 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
251 #define FONTSET_REPERTORY(fontset) XCHAR_TABLE (fontset)->extras[6]
252 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
253
254 /* For both base and realized fontset. */
255 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
256
257 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
258
259
260 /* Macros for FONT-DEF and RFONT-DEF of fontset. */
261 #define FONT_DEF_NEW(font_def, font_spec, encoding, repertory) \
262 do { \
263 (font_def) = Fmake_vector (make_number (3), (font_spec)); \
264 ASET ((font_def), 1, encoding); \
265 ASET ((font_def), 2, repertory); \
266 } while (0)
267
268 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
269 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
270 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
271
272 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
273 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
274 ASET ((rfont_def), 0, make_number (face_id))
275 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
276 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (AREF (rfont_def, 1))
277 #define RFONT_DEF_REPERTORY(rfont_def) FONT_DEF_REPERTORY (AREF (rfont_def, 1))
278 #define RFONT_DEF_OBJECT(rfont_def) AREF (rfont_def, 2)
279 #define RFONT_DEF_SET_OBJECT(rfont_def, object) \
280 ASET ((rfont_def), 2, (object))
281 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
282 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
283 ASET ((rfont_def), 3, make_number (score))
284 #define RFONT_DEF_NEW(rfont_def, font_def) \
285 do { \
286 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
287 ASET ((rfont_def), 1, (font_def)); \
288 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
289 } while (0)
290
291
292 /* Return the element of FONTSET for the character C. If FONTSET is a
293 base fontset other then the default fontset and FONTSET doesn't
294 contain information for C, return the information in the default
295 fontset. */
296
297 #define FONTSET_REF(fontset, c) \
298 (EQ (fontset, Vdefault_fontset) \
299 ? CHAR_TABLE_REF (fontset, c) \
300 : fontset_ref ((fontset), (c)))
301
302 static Lisp_Object
303 fontset_ref (fontset, c)
304 Lisp_Object fontset;
305 int c;
306 {
307 Lisp_Object elt;
308
309 elt = CHAR_TABLE_REF (fontset, c);
310 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
311 /* Don't check Vdefault_fontset for a realized fontset. */
312 && NILP (FONTSET_BASE (fontset)))
313 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
314 return elt;
315 }
316
317 /* Set elements of FONTSET for characters in RANGE to the value ELT.
318 RANGE is a cons (FROM . TO), where FROM and TO are character codes
319 specifying a range. */
320
321 #define FONTSET_SET(fontset, range, elt) \
322 Fset_char_table_range ((fontset), (range), (elt))
323
324
325 /* Modify the elements of FONTSET for characters in RANGE by replacing
326 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
327 and TO are character codes specifying a range. If ADD is nil,
328 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
329 append ELT. */
330
331 #define FONTSET_ADD(fontset, range, elt, add) \
332 (NILP (add) \
333 ? (NILP (range) \
334 ? (FONTSET_FALLBACK (fontset) = Fmake_vector (make_number (1), (elt))) \
335 : Fset_char_table_range ((fontset), (range), \
336 Fmake_vector (make_number (1), (elt)))) \
337 : fontset_add ((fontset), (range), (elt), (add)))
338
339 static Lisp_Object
340 fontset_add (fontset, range, elt, add)
341 Lisp_Object fontset, range, elt, add;
342 {
343 Lisp_Object args[2];
344 int idx = (EQ (add, Qappend) ? 0 : 1);
345
346 args[1 - idx] = Fmake_vector (make_number (1), elt);
347
348 if (CONSP (range))
349 {
350 int from = XINT (XCAR (range));
351 int to = XINT (XCDR (range));
352 int from1, to1;
353
354 do {
355 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
356 if (to < to1)
357 to1 = to;
358 char_table_set_range (fontset, from, to1,
359 NILP (args[idx]) ? args[1 - idx]
360 : Fvconcat (2, args));
361 from = to1 + 1;
362 } while (from < to);
363 }
364 else
365 {
366 args[idx] = FONTSET_FALLBACK (fontset);
367 FONTSET_FALLBACK (fontset)
368 = NILP (args[idx]) ? args[1 - idx] : Fvconcat (2, args);
369 }
370 return Qnil;
371 }
372
373 static int
374 fontset_compare_rfontdef (val1, val2)
375 const void *val1, *val2;
376 {
377 return (RFONT_DEF_SCORE (*(Lisp_Object *) val1)
378 - RFONT_DEF_SCORE (*(Lisp_Object *) val2));
379 }
380
381 /* Update FONT-GROUP which has this form:
382 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
383 RFONT-DEF0 RFONT-DEF1 ... ]
384 Reorder RFONT-DEFs according to the current language, and update
385 CHARSET-ORDERED-LIST-TICK.
386
387 If PREFERRED_FAMILY is not nil, that family has the higher priority
388 if the encoding charsets or languages in font-specs are the same. */
389
390 extern Lisp_Object Fassoc_string ();
391
392 static void
393 reorder_font_vector (font_group, font)
394 Lisp_Object font_group;
395 struct font *font;
396 {
397 Lisp_Object vec, font_object;
398 int size;
399 int i;
400 int score_changed = 0;
401
402 if (font)
403 XSETFONT (font_object, font);
404 else
405 font_object = Qnil;
406
407 vec = XCDR (font_group);
408 size = ASIZE (vec);
409 /* Exclude the tailing nil element from the reordering. */
410 if (NILP (AREF (vec, size - 1)))
411 size--;
412
413 for (i = 0; i < size; i++)
414 {
415 Lisp_Object rfont_def = AREF (vec, i);
416 Lisp_Object font_def = RFONT_DEF_FONT_DEF (rfont_def);
417 Lisp_Object font_spec = FONT_DEF_SPEC (font_def);
418 int score = RFONT_DEF_SCORE (rfont_def) & 0xFF;
419
420 if (! font_match_p (font_spec, font_object))
421 {
422 Lisp_Object repertory = FONT_DEF_REPERTORY (font_def);
423
424 if (! NILP (repertory))
425 {
426 Lisp_Object tail;
427
428 for (tail = Vcharset_ordered_list;
429 ! EQ (tail, Vcharset_non_preferred_head) && CONSP (tail);
430 score += 0x100, tail = XCDR (tail))
431 if (EQ (repertory, XCAR (tail)))
432 break;
433 }
434 else
435 {
436 Lisp_Object lang = Ffont_get (font_spec, QClang);
437
438 if (! NILP (lang)
439 && ! EQ (lang, Vcurrent_iso639_language)
440 && (! CONSP (Vcurrent_iso639_language)
441 || NILP (Fmemq (lang, Vcurrent_iso639_language))))
442 score |= 0x100;
443 }
444 }
445 if (RFONT_DEF_SCORE (rfont_def) != score)
446 {
447 RFONT_DEF_SET_SCORE (rfont_def, score);
448 score_changed = 1;
449 }
450 }
451
452 if (score_changed)
453 qsort (XVECTOR (vec)->contents, size, sizeof (Lisp_Object),
454 fontset_compare_rfontdef);
455 XSETCAR (font_group, make_number (charset_ordered_list_tick));
456 }
457
458 static Lisp_Object
459 fontset_get_font_group (Lisp_Object fontset, int c)
460 {
461 Lisp_Object font_group;
462 Lisp_Object base_fontset;
463 int from, to, i;
464
465 xassert (! BASE_FONTSET_P (fontset));
466 if (c >= 0)
467 font_group = CHAR_TABLE_REF (fontset, c);
468 else
469 font_group = FONTSET_FALLBACK (fontset);
470 if (! NILP (font_group))
471 return font_group;
472 base_fontset = FONTSET_BASE (fontset);
473 if (c >= 0)
474 font_group = char_table_ref_and_range (base_fontset, c, &from, &to);
475 else
476 font_group = FONTSET_FALLBACK (base_fontset);
477 if (NILP (font_group))
478 return Qnil;
479 font_group = Fcopy_sequence (font_group);
480 for (i = 0; i < ASIZE (font_group); i++)
481 if (! NILP (AREF (font_group, i)))
482 {
483 Lisp_Object rfont_def;
484
485 RFONT_DEF_NEW (rfont_def, AREF (font_group, i));
486 /* Remember the original order. */
487 RFONT_DEF_SET_SCORE (rfont_def, i);
488 ASET (font_group, i, rfont_def);
489 }
490 font_group = Fcons (make_number (-1), font_group);
491 if (c >= 0)
492 char_table_set_range (fontset, from, to, font_group);
493 else
494 FONTSET_FALLBACK (fontset) = font_group;
495 return font_group;
496 }
497
498 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
499 character C. If no font is found, return Qnil if there's a
500 possibility that the default fontset or the fallback font groups
501 have a proper font, and return Qt if not.
502
503 If a font is found but is not yet opened, open it (if FACE is not
504 NULL) or return Qnil (if FACE is NULL).
505
506 ID is a charset-id that must be preferred, or -1 meaning no
507 preference.
508
509 If FALLBACK is nonzero, search only fallback fonts. */
510
511 static Lisp_Object
512 fontset_find_font (fontset, c, face, id, fallback)
513 Lisp_Object fontset;
514 int c;
515 struct face *face;
516 int id, fallback;
517 {
518 Lisp_Object elt, vec, font_group;
519 int i;
520 FRAME_PTR f = XFRAME (FONTSET_FRAME (fontset));
521 int charset_matched = -1;
522
523 font_group = fontset_get_font_group (fontset, fallback ? -1 : c);
524 if (! CONSP (font_group))
525 return Qnil;
526 vec = XCDR (font_group);
527 if (ASIZE (vec) == 0)
528 return Qnil;
529
530 if (ASIZE (vec) > 1)
531 {
532 if (XINT (XCAR (font_group)) != charset_ordered_list_tick)
533 /* We have just created the font-group,
534 or the charset priorities were changed. */
535 reorder_font_vector (font_group, face->ascii_face->font);
536 if (id >= 0)
537 /* Find a spec matching with the charset ID to try at
538 first. */
539 for (i = 0; i < ASIZE (vec); i++)
540 {
541 Lisp_Object rfont_def = AREF (vec, i);
542 Lisp_Object repertory
543 = FONT_DEF_REPERTORY (RFONT_DEF_FONT_DEF (rfont_def));
544
545 if (XINT (repertory) == id)
546 {
547 charset_matched = i;
548 break;
549 }
550 }
551 }
552
553 /* Find the first available font in the vector of RFONT-DEF. */
554 for (i = 0; i < ASIZE (vec); i++)
555 {
556 Lisp_Object font_entity, font_object;
557
558 if (i == 0 && charset_matched >= 0)
559 {
560 /* Try the element matching with the charset ID at first. */
561 elt = AREF (vec, charset_matched);
562 charset_matched = -1;
563 i--;
564 }
565 else if (i != charset_matched)
566 elt = AREF (vec, i);
567 else
568 continue;
569
570 if (NILP (elt))
571 /* This is a sign of not to try the other fonts. */
572 return Qt;
573 if (INTEGERP (RFONT_DEF_FACE (elt))
574 && XINT (AREF (elt, 1)) < 0)
575 /* We couldn't open this font last time. */
576 continue;
577
578 font_object = RFONT_DEF_OBJECT (elt);
579 if (NILP (font_object))
580 {
581 Lisp_Object font_def = RFONT_DEF_FONT_DEF (elt);
582
583 if (! face)
584 /* We have not yet opened the font. */
585 return Qnil;
586 font_entity = font_find_for_lface (f, face->lface,
587 FONT_DEF_SPEC (font_def), -1);
588 if (NILP (font_entity))
589 {
590 /* Record that no font matches the spec. */
591 RFONT_DEF_SET_FACE (elt, -1);
592 continue;
593 }
594 font_object = font_open_for_lface (f, font_entity, face->lface,
595 FONT_DEF_SPEC (font_def));
596 if (NILP (font_object))
597 {
598 /* Record that the font is unsable. */
599 RFONT_DEF_SET_FACE (elt, -1);
600 continue;
601 }
602 RFONT_DEF_SET_OBJECT (elt, font_object);
603 }
604
605 if (font_has_char (f, font_object, c))
606 return elt;
607
608 #if 0
609 /* The following code makes Emacs to find a font for C by fairly
610 exhausitive search. But, that takes long time especially for
611 X font backend. */
612
613 /* Try to find the different font maching with the current spec
614 and support C. */
615 font_def = RFONT_DEF_FONT_DEF (elt);
616 for (i++; i < ASIZE (vec); i++)
617 {
618 if (! EQ (RFONT_DEF_FONT_DEF (AREF (vec, i)), font_def))
619 break;
620 if (font_has_char (f, RFONT_DEF_OBJECT (AREF (vec, i)), c))
621 return AREF (vec, i);
622 }
623 /* Find an font-entity that support C. */
624 font_entity = font_find_for_lface (f, face->lface,
625 FONT_DEF_SPEC (font_def), c);
626 if (! NILP (font_entity))
627 {
628 Lisp_Object rfont_def, new_vec;
629 int j;
630
631 font_object = font_open_for_lface (f, font_entity, face->lface,
632 Qnil);
633 RFONT_DEF_NEW (rfont_def, font_def);
634 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
635 RFONT_DEF_SET_SCORE (rfont_def, RFONT_DEF_SCORE (elt));
636 new_vec = Fmake_vector (make_number (ASIZE (vec) + 1), Qnil);
637 for (j = 0; j < i; j++)
638 ASET (new_vec, j, AREF (vec, j));
639 ASET (new_vec, j, rfont_def);
640 for (j++; j < ASIZE (new_vec); j++)
641 ASET (new_vec, j, AREF (vec, j - 1));
642 vec = new_vec;
643 return rfont_def;
644 }
645 i--;
646 #endif /* 0 */
647 }
648
649 FONTSET_SET (fontset, make_number (c), make_number (0));
650 return Qnil;
651 }
652
653
654 static Lisp_Object
655 fontset_font (fontset, c, face, id)
656 Lisp_Object fontset;
657 int c;
658 struct face *face;
659 int id;
660 {
661 Lisp_Object rfont_def;
662 Lisp_Object base_fontset;
663
664 /* Try a font-group of FONTSET. */
665 rfont_def = fontset_find_font (fontset, c, face, id, 0);
666 if (VECTORP (rfont_def))
667 return rfont_def;
668 if (EQ (rfont_def, Qt))
669 return Qnil;
670
671 /* Try a font-group of the default fontset. */
672 base_fontset = FONTSET_BASE (fontset);
673 if (! EQ (base_fontset, Vdefault_fontset))
674 {
675 if (NILP (FONTSET_DEFAULT (fontset)))
676 FONTSET_DEFAULT (fontset)
677 = make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset);
678 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0);
679 if (VECTORP (rfont_def))
680 return rfont_def;
681 if (EQ (rfont_def, Qt))
682 return Qnil;
683 }
684
685 /* Try a fallback font-group of FONTSET. */
686 rfont_def = fontset_find_font (fontset, c, face, id, 1);
687 if (VECTORP (rfont_def))
688 return rfont_def;
689 if (EQ (rfont_def, Qt))
690 return Qnil;
691
692 /* Try a fallback font-group of the default fontset . */
693 if (! EQ (base_fontset, Vdefault_fontset))
694 {
695 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1);
696 if (VECTORP (rfont_def))
697 return rfont_def;
698 }
699
700 /* Remeber that we have no font for C. */
701 FONTSET_SET (fontset, make_number (c), Qt);
702
703 return Qnil;
704 }
705
706 /* Return a newly created fontset with NAME. If BASE is nil, make a
707 base fontset. Otherwise make a realized fontset whose base is
708 BASE. */
709
710 static Lisp_Object
711 make_fontset (frame, name, base)
712 Lisp_Object frame, name, base;
713 {
714 Lisp_Object fontset;
715 int size = ASIZE (Vfontset_table);
716 int id = next_fontset_id;
717
718 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
719 the next available fontset ID. So it is expected that this loop
720 terminates quickly. In addition, as the last element of
721 Vfontset_table is always nil, we don't have to check the range of
722 id. */
723 while (!NILP (AREF (Vfontset_table, id))) id++;
724
725 if (id + 1 == size)
726 Vfontset_table = larger_vector (Vfontset_table, size + 32, Qnil);
727
728 fontset = Fmake_char_table (Qfontset, Qnil);
729
730 FONTSET_ID (fontset) = make_number (id);
731 if (NILP (base))
732 {
733 FONTSET_NAME (fontset) = name;
734 }
735 else
736 {
737 FONTSET_NAME (fontset) = Qnil;
738 FONTSET_FRAME (fontset) = frame;
739 FONTSET_BASE (fontset) = base;
740 }
741
742 ASET (Vfontset_table, id, fontset);
743 next_fontset_id = id + 1;
744 return fontset;
745 }
746
747
748 /* Set the ASCII font of the default fontset to FONTNAME if that is
749 not yet set. */
750 void
751 set_default_ascii_font (fontname)
752 Lisp_Object fontname;
753 {
754 if (! STRINGP (FONTSET_ASCII (Vdefault_fontset)))
755 {
756 int id = fs_query_fontset (fontname, 2);
757
758 if (id >= 0)
759 fontname = FONTSET_ASCII (FONTSET_FROM_ID (id));
760 FONTSET_ASCII (Vdefault_fontset)= fontname;
761 }
762 }
763
764 \f
765 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
766
767 /* Return the name of the fontset who has ID. */
768
769 Lisp_Object
770 fontset_name (id)
771 int id;
772 {
773 Lisp_Object fontset;
774
775 fontset = FONTSET_FROM_ID (id);
776 return FONTSET_NAME (fontset);
777 }
778
779
780 /* Return the ASCII font name of the fontset who has ID. */
781
782 Lisp_Object
783 fontset_ascii (id)
784 int id;
785 {
786 Lisp_Object fontset, elt;
787
788 fontset= FONTSET_FROM_ID (id);
789 elt = FONTSET_ASCII (fontset);
790 if (CONSP (elt))
791 elt = XCAR (elt);
792 return elt;
793 }
794
795 void
796 free_realized_fontset (f, fontset)
797 FRAME_PTR f;
798 Lisp_Object fontset;
799 {
800 Lisp_Object tail;
801
802 return;
803 for (tail = FONTSET_OBJLIST (fontset); CONSP (tail); tail = XCDR (tail))
804 {
805 xassert (FONT_OBJECT_P (XCAR (tail)));
806 font_close_object (f, XCAR (tail));
807 }
808 }
809
810 /* Free fontset of FACE defined on frame F. Called from
811 free_realized_face. */
812
813 void
814 free_face_fontset (f, face)
815 FRAME_PTR f;
816 struct face *face;
817 {
818 Lisp_Object fontset;
819
820 fontset = FONTSET_FROM_ID (face->fontset);
821 if (NILP (fontset))
822 return;
823 xassert (! BASE_FONTSET_P (fontset));
824 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
825 free_realized_fontset (f, fontset);
826 ASET (Vfontset_table, face->fontset, Qnil);
827 if (face->fontset < next_fontset_id)
828 next_fontset_id = face->fontset;
829 if (! NILP (FONTSET_DEFAULT (fontset)))
830 {
831 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
832
833 fontset = AREF (Vfontset_table, id);
834 xassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
835 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
836 free_realized_fontset (f, fontset);
837 ASET (Vfontset_table, id, Qnil);
838 if (id < next_fontset_id)
839 next_fontset_id = face->fontset;
840 }
841 face->fontset = -1;
842 }
843
844
845 /* Return 1 if FACE is suitable for displaying character C.
846 Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P
847 when C is not an ASCII character. */
848
849 int
850 face_suitable_for_char_p (face, c)
851 struct face *face;
852 int c;
853 {
854 Lisp_Object fontset, rfont_def;
855
856 fontset = FONTSET_FROM_ID (face->fontset);
857 rfont_def = fontset_font (fontset, c, NULL, -1);
858 return (VECTORP (rfont_def)
859 && INTEGERP (RFONT_DEF_FACE (rfont_def))
860 && face->id == XINT (RFONT_DEF_FACE (rfont_def)));
861 }
862
863
864 /* Return ID of face suitable for displaying character C on frame F.
865 FACE must be reazlied for ASCII characters in advance. Called from
866 the macro FACE_FOR_CHAR. */
867
868 int
869 face_for_char (f, face, c, pos, object)
870 FRAME_PTR f;
871 struct face *face;
872 int c, pos;
873 Lisp_Object object;
874 {
875 Lisp_Object fontset, rfont_def;
876 int face_id;
877 int id;
878
879 if (ASCII_CHAR_P (c))
880 return face->ascii_face->id;
881
882 xassert (fontset_id_valid_p (face->fontset));
883 fontset = FONTSET_FROM_ID (face->fontset);
884 xassert (!BASE_FONTSET_P (fontset));
885
886 if (pos < 0)
887 id = -1;
888 else
889 {
890 Lisp_Object charset;
891
892 charset = Fget_char_property (make_number (pos), Qcharset, object);
893 if (NILP (charset))
894 id = -1;
895 else if (CHARSETP (charset))
896 {
897 Lisp_Object val;
898
899 val = assoc_no_quit (charset, Vfont_encoding_charset_alist);
900 if (CONSP (val) && CHARSETP (XCDR (val)))
901 charset = XCDR (val);
902 id = XINT (CHARSET_SYMBOL_ID (charset));
903 }
904 }
905
906 rfont_def = fontset_font (fontset, c, face, id);
907 if (VECTORP (rfont_def))
908 {
909 if (INTEGERP (RFONT_DEF_FACE (rfont_def)))
910 face_id = XINT (RFONT_DEF_FACE (rfont_def));
911 else
912 {
913 Lisp_Object font_object;
914
915 font_object = RFONT_DEF_OBJECT (rfont_def);
916 face_id = face_for_font (f, font_object, face);
917 RFONT_DEF_SET_FACE (rfont_def, face_id);
918 }
919 }
920 else
921 {
922 if (INTEGERP (FONTSET_NOFONT_FACE (fontset)))
923 face_id = XINT (FONTSET_NOFONT_FACE (fontset));
924 else
925 {
926 face_id = face_for_font (f, Qnil, face);
927 FONTSET_NOFONT_FACE (fontset) = make_number (face_id);
928 }
929 }
930 xassert (face_id >= 0);
931 return face_id;
932 }
933
934
935 /* Make a realized fontset for ASCII face FACE on frame F from the
936 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
937 default fontset as the base. Value is the id of the new fontset.
938 Called from realize_x_face. */
939
940 int
941 make_fontset_for_ascii_face (f, base_fontset_id, face)
942 FRAME_PTR f;
943 int base_fontset_id;
944 struct face *face;
945 {
946 Lisp_Object base_fontset, fontset, frame;
947
948 XSETFRAME (frame, f);
949 if (base_fontset_id >= 0)
950 {
951 base_fontset = FONTSET_FROM_ID (base_fontset_id);
952 if (!BASE_FONTSET_P (base_fontset))
953 base_fontset = FONTSET_BASE (base_fontset);
954 if (! BASE_FONTSET_P (base_fontset))
955 abort ();
956 }
957 else
958 base_fontset = Vdefault_fontset;
959
960 fontset = make_fontset (frame, Qnil, base_fontset);
961 return XINT (FONTSET_ID (fontset));
962 }
963
964 \f
965
966 /* Cache data used by fontset_pattern_regexp. The car part is a
967 pattern string containing at least one wild card, the cdr part is
968 the corresponding regular expression. */
969 static Lisp_Object Vcached_fontset_data;
970
971 #define CACHED_FONTSET_NAME ((char *) SDATA (XCAR (Vcached_fontset_data)))
972 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
973
974 /* If fontset name PATTERN contains any wild card, return regular
975 expression corresponding to PATTERN. */
976
977 static Lisp_Object
978 fontset_pattern_regexp (pattern)
979 Lisp_Object pattern;
980 {
981 if (!index ((char *) SDATA (pattern), '*')
982 && !index ((char *) SDATA (pattern), '?'))
983 /* PATTERN does not contain any wild cards. */
984 return Qnil;
985
986 if (!CONSP (Vcached_fontset_data)
987 || strcmp ((char *) SDATA (pattern), CACHED_FONTSET_NAME))
988 {
989 /* We must at first update the cached data. */
990 unsigned char *regex, *p0, *p1;
991 int ndashes = 0, nstars = 0, nescs = 0;
992
993 for (p0 = SDATA (pattern); *p0; p0++)
994 {
995 if (*p0 == '-')
996 ndashes++;
997 else if (*p0 == '*')
998 nstars++;
999 else if (*p0 == '['
1000 || *p0 == '.' || *p0 == '\\'
1001 || *p0 == '+' || *p0 == '^'
1002 || *p0 == '$')
1003 nescs++;
1004 }
1005
1006 /* If PATTERN is not full XLFD we conert "*" to ".*". Otherwise
1007 we convert "*" to "[^-]*" which is much faster in regular
1008 expression matching. */
1009 if (ndashes < 14)
1010 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 2 * nstars + 2 * nescs + 1);
1011 else
1012 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 5 * nstars + 2 * nescs + 1);
1013
1014 *p1++ = '^';
1015 for (p0 = SDATA (pattern); *p0; p0++)
1016 {
1017 if (*p0 == '*')
1018 {
1019 if (ndashes < 14)
1020 *p1++ = '.';
1021 else
1022 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1023 *p1++ = '*';
1024 }
1025 else if (*p0 == '?')
1026 *p1++ = '.';
1027 else if (*p0 == '['
1028 || *p0 == '.' || *p0 == '\\'
1029 || *p0 == '+' || *p0 == '^'
1030 || *p0 == '$')
1031 *p1++ = '\\', *p1++ = *p0;
1032 else
1033 *p1++ = *p0;
1034 }
1035 *p1++ = '$';
1036 *p1++ = 0;
1037
1038 Vcached_fontset_data = Fcons (build_string ((char *) SDATA (pattern)),
1039 build_string ((char *) regex));
1040 }
1041
1042 return CACHED_FONTSET_REGEX;
1043 }
1044
1045 /* Return ID of the base fontset named NAME. If there's no such
1046 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1047 0: pattern containing '*' and '?' as wildcards
1048 1: regular expression
1049 2: literal fontset name
1050 */
1051
1052 int
1053 fs_query_fontset (name, name_pattern)
1054 Lisp_Object name;
1055 int name_pattern;
1056 {
1057 Lisp_Object tem;
1058 int i;
1059
1060 name = Fdowncase (name);
1061 if (name_pattern != 1)
1062 {
1063 tem = Frassoc (name, Vfontset_alias_alist);
1064 if (NILP (tem))
1065 tem = Fassoc (name, Vfontset_alias_alist);
1066 if (CONSP (tem) && STRINGP (XCAR (tem)))
1067 name = XCAR (tem);
1068 else if (name_pattern == 0)
1069 {
1070 tem = fontset_pattern_regexp (name);
1071 if (STRINGP (tem))
1072 {
1073 name = tem;
1074 name_pattern = 1;
1075 }
1076 }
1077 }
1078
1079 for (i = 0; i < ASIZE (Vfontset_table); i++)
1080 {
1081 Lisp_Object fontset, this_name;
1082
1083 fontset = FONTSET_FROM_ID (i);
1084 if (NILP (fontset)
1085 || !BASE_FONTSET_P (fontset))
1086 continue;
1087
1088 this_name = FONTSET_NAME (fontset);
1089 if (name_pattern == 1
1090 ? fast_string_match_ignore_case (name, this_name) >= 0
1091 : !xstrcasecmp (SDATA (name), SDATA (this_name)))
1092 return i;
1093 }
1094 return -1;
1095 }
1096
1097
1098 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1099 doc: /* Return the name of a fontset that matches PATTERN.
1100 The value is nil if there is no matching fontset.
1101 PATTERN can contain `*' or `?' as a wildcard
1102 just as X font name matching algorithm allows.
1103 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1104 (pattern, regexpp)
1105 Lisp_Object pattern, regexpp;
1106 {
1107 Lisp_Object fontset;
1108 int id;
1109
1110 (*check_window_system_func) ();
1111
1112 CHECK_STRING (pattern);
1113
1114 if (SCHARS (pattern) == 0)
1115 return Qnil;
1116
1117 id = fs_query_fontset (pattern, !NILP (regexpp));
1118 if (id < 0)
1119 return Qnil;
1120
1121 fontset = FONTSET_FROM_ID (id);
1122 return FONTSET_NAME (fontset);
1123 }
1124
1125 /* Return a list of base fontset names matching PATTERN on frame F. */
1126
1127 Lisp_Object
1128 list_fontsets (f, pattern, size)
1129 FRAME_PTR f;
1130 Lisp_Object pattern;
1131 int size;
1132 {
1133 Lisp_Object frame, regexp, val;
1134 int id;
1135
1136 XSETFRAME (frame, f);
1137
1138 regexp = fontset_pattern_regexp (pattern);
1139 val = Qnil;
1140
1141 for (id = 0; id < ASIZE (Vfontset_table); id++)
1142 {
1143 Lisp_Object fontset, name;
1144
1145 fontset = FONTSET_FROM_ID (id);
1146 if (NILP (fontset)
1147 || !BASE_FONTSET_P (fontset)
1148 || !EQ (frame, FONTSET_FRAME (fontset)))
1149 continue;
1150 name = FONTSET_NAME (fontset);
1151
1152 if (STRINGP (regexp)
1153 ? (fast_string_match (regexp, name) < 0)
1154 : strcmp ((char *) SDATA (pattern), (char *) SDATA (name)))
1155 continue;
1156
1157 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1158 }
1159
1160 return val;
1161 }
1162
1163
1164 /* Free all realized fontsets whose base fontset is BASE. */
1165
1166 static void
1167 free_realized_fontsets (base)
1168 Lisp_Object base;
1169 {
1170 int id;
1171
1172 #if 0
1173 /* For the moment, this doesn't work because free_realized_face
1174 doesn't remove FACE from a cache. Until we find a solution, we
1175 suppress this code, and simply use Fclear_face_cache even though
1176 that is not efficient. */
1177 BLOCK_INPUT;
1178 for (id = 0; id < ASIZE (Vfontset_table); id++)
1179 {
1180 Lisp_Object this = AREF (Vfontset_table, id);
1181
1182 if (EQ (FONTSET_BASE (this), base))
1183 {
1184 Lisp_Object tail;
1185
1186 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1187 tail = XCDR (tail))
1188 {
1189 FRAME_PTR f = XFRAME (FONTSET_FRAME (this));
1190 int face_id = XINT (XCDR (XCAR (tail)));
1191 struct face *face = FACE_FROM_ID (f, face_id);
1192
1193 /* Face THIS itself is also freed by the following call. */
1194 free_realized_face (f, face);
1195 }
1196 }
1197 }
1198 UNBLOCK_INPUT;
1199 #else /* not 0 */
1200 /* But, we don't have to call Fclear_face_cache if no fontset has
1201 been realized from BASE. */
1202 for (id = 0; id < ASIZE (Vfontset_table); id++)
1203 {
1204 Lisp_Object this = AREF (Vfontset_table, id);
1205
1206 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base))
1207 {
1208 Fclear_face_cache (Qt);
1209 break;
1210 }
1211 }
1212 #endif /* not 0 */
1213 }
1214
1215
1216 /* Check validity of NAME as a fontset name and return the
1217 corresponding fontset. If not valid, signal an error.
1218 If NAME is t, return Vdefault_fontset. */
1219
1220 static Lisp_Object
1221 check_fontset_name (name)
1222 Lisp_Object name;
1223 {
1224 int id;
1225
1226 if (EQ (name, Qt))
1227 return Vdefault_fontset;
1228
1229 CHECK_STRING (name);
1230 /* First try NAME as literal. */
1231 id = fs_query_fontset (name, 2);
1232 if (id < 0)
1233 /* For backward compatibility, try again NAME as pattern. */
1234 id = fs_query_fontset (name, 0);
1235 if (id < 0)
1236 error ("Fontset `%s' does not exist", SDATA (name));
1237 return FONTSET_FROM_ID (id);
1238 }
1239
1240 static void
1241 accumulate_script_ranges (arg, range, val)
1242 Lisp_Object arg, range, val;
1243 {
1244 if (EQ (XCAR (arg), val))
1245 {
1246 if (CONSP (range))
1247 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1248 else
1249 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1250 }
1251 }
1252
1253
1254 /* Return an ASCII font name generated from fontset name NAME and
1255 font-spec ASCII_SPEC. NAME is a string conforming to XLFD. */
1256
1257 static INLINE Lisp_Object
1258 generate_ascii_font_name (name, ascii_spec)
1259 Lisp_Object name, ascii_spec;
1260 {
1261 Lisp_Object font_spec = Ffont_spec (0, NULL);
1262 int i;
1263 char xlfd[256];
1264
1265 if (font_parse_xlfd ((char *) SDATA (name), font_spec) < 0)
1266 error ("Not an XLFD font name: %s", SDATA (name));
1267 for (i = FONT_FOUNDRY_INDEX; i < FONT_EXTRA_INDEX; i++)
1268 if (! NILP (AREF (ascii_spec, i)))
1269 ASET (font_spec, i, AREF (ascii_spec, i));
1270 i = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1271 if (i < 0)
1272 error ("Not an XLFD font name: %s", SDATA (name));
1273 return make_unibyte_string (xlfd, i);
1274 }
1275
1276 /* Variables referred in set_fontset_font. They are set before
1277 map_charset_chars is called in Fset_fontset_font. */
1278 static Lisp_Object font_def_arg, add_arg;
1279 static int from_arg, to_arg;
1280
1281 /* Callback function for map_charset_chars in Fset_fontset_font. In
1282 FONTSET, set font_def_arg in a fashion specified by add_arg for
1283 characters in RANGE while ignoring the range between from_arg and
1284 to_arg. */
1285
1286 static void
1287 set_fontset_font (fontset, range)
1288 Lisp_Object fontset, range;
1289 {
1290 if (from_arg < to_arg)
1291 {
1292 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1293
1294 if (from < from_arg)
1295 {
1296 if (to > to_arg)
1297 {
1298 Lisp_Object range2;
1299
1300 range2 = Fcons (make_number (to_arg), XCDR (range));
1301 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1302 to = to_arg;
1303 }
1304 if (to > from_arg)
1305 range = Fcons (XCAR (range), make_number (from_arg));
1306 }
1307 else if (to <= to_arg)
1308 return;
1309 else
1310 {
1311 if (from < to_arg)
1312 range = Fcons (make_number (to_arg), XCDR (range));
1313 }
1314 }
1315 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1316 }
1317
1318 extern Lisp_Object QCfamily, QCregistry;
1319
1320 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1321 doc: /*
1322 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1323
1324 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1325 In that case, use FONT-SPEC for all characters in the range FROM and
1326 TO (inclusive).
1327
1328 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1329 all characters that belong to the script.
1330
1331 TARGET may be a charset. In that case, use FONT-SPEC for all
1332 characters in the charset.
1333
1334 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1335 that no FONT-SPEC is specified.
1336
1337 FONT-SPEC may one of these:
1338 * A font-spec object made by the function `font-spec' (which see).
1339 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1340 REGISTRY is a font registry name. FAMILY may contain foundry
1341 name, and REGISTRY may contain encoding name.
1342 * A font name string.
1343 * nil, which explicitly specifies that there's no font for TARGET.
1344
1345 Optional 4th argument FRAME, if non-nil, is a frame. This argument is
1346 kept for backward compatibility and has no meaning.
1347
1348 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1349 to the font specifications for TARGET previously set. If it is
1350 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1351 appended. By default, FONT-SPEC overrides the previous settings. */)
1352 (name, target, font_spec, frame, add)
1353 Lisp_Object name, target, font_spec, frame, add;
1354 {
1355 Lisp_Object fontset;
1356 Lisp_Object font_def, registry, family;
1357 Lisp_Object range_list;
1358 struct charset *charset = NULL;
1359
1360 fontset = check_fontset_name (name);
1361
1362 /* The arg FRAME is kept for backward compatibility. We only check
1363 the validity. */
1364 if (!NILP (frame))
1365 CHECK_LIVE_FRAME (frame);
1366
1367 if (CONSP (font_spec))
1368 {
1369 Lisp_Object spec = Ffont_spec (0, NULL);
1370
1371 font_parse_family_registry (XCAR (font_spec), XCDR (font_spec), spec);
1372 font_spec = spec;
1373 }
1374 else if (STRINGP (font_spec))
1375 {
1376 Lisp_Object args[2];
1377 extern Lisp_Object QCname;
1378
1379 args[0] = QCname;
1380 args[1] = font_spec;
1381 font_spec = Ffont_spec (2, args);
1382 }
1383 else if (! NILP (font_spec) && ! FONT_SPEC_P (font_spec))
1384 Fsignal (Qfont, list2 (build_string ("Invalid font-spec"), font_spec));
1385
1386 if (! NILP (font_spec))
1387 {
1388 Lisp_Object encoding, repertory;
1389
1390 family = AREF (font_spec, FONT_FAMILY_INDEX);
1391 if (! NILP (family) )
1392 family = SYMBOL_NAME (family);
1393 registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1394 if (! NILP (registry))
1395 registry = Fdowncase (SYMBOL_NAME (registry));
1396 encoding = find_font_encoding (concat3 (family, build_string ("-"),
1397 registry));
1398 if (NILP (encoding))
1399 encoding = Qascii;
1400
1401 if (SYMBOLP (encoding))
1402 {
1403 CHECK_CHARSET (encoding);
1404 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1405 }
1406 else
1407 {
1408 repertory = XCDR (encoding);
1409 encoding = XCAR (encoding);
1410 CHECK_CHARSET (encoding);
1411 encoding = CHARSET_SYMBOL_ID (encoding);
1412 if (! NILP (repertory) && SYMBOLP (repertory))
1413 {
1414 CHECK_CHARSET (repertory);
1415 repertory = CHARSET_SYMBOL_ID (repertory);
1416 }
1417 }
1418 FONT_DEF_NEW (font_def, font_spec, encoding, repertory);
1419 }
1420 else
1421 font_def = Qnil;
1422
1423 if (CHARACTERP (target))
1424 range_list = Fcons (Fcons (target, target), Qnil);
1425 else if (CONSP (target))
1426 {
1427 Lisp_Object from, to;
1428
1429 from = Fcar (target);
1430 to = Fcdr (target);
1431 CHECK_CHARACTER (from);
1432 CHECK_CHARACTER (to);
1433 range_list = Fcons (target, Qnil);
1434 }
1435 else if (SYMBOLP (target) && !NILP (target))
1436 {
1437 Lisp_Object script_list;
1438 Lisp_Object val;
1439
1440 range_list = Qnil;
1441 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1442 if (! NILP (Fmemq (target, script_list)))
1443 {
1444 val = Fcons (target, Qnil);
1445 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1446 val);
1447 range_list = XCDR (val);
1448 if (EQ (target, Qlatin) && NILP (FONTSET_ASCII (fontset)))
1449 {
1450 if (VECTORP (font_spec))
1451 val = generate_ascii_font_name (FONTSET_NAME (fontset),
1452 font_spec);
1453 else
1454 val = font_spec;
1455 FONTSET_ASCII (fontset) = val;
1456 }
1457 }
1458 if (CHARSETP (target))
1459 {
1460 if (EQ (target, Qascii) && NILP (FONTSET_ASCII (fontset)))
1461 {
1462 if (VECTORP (font_spec))
1463 font_spec = generate_ascii_font_name (FONTSET_NAME (fontset),
1464 font_spec);
1465 FONTSET_ASCII (fontset) = font_spec;
1466 range_list = Fcons (Fcons (make_number (0), make_number (127)),
1467 Qnil);
1468 }
1469 else
1470 {
1471 CHECK_CHARSET_GET_CHARSET (target, charset);
1472 }
1473 }
1474 else if (NILP (range_list))
1475 error ("Invalid script or charset name: %s",
1476 SDATA (SYMBOL_NAME (target)));
1477 }
1478 else if (NILP (target))
1479 range_list = Fcons (Qnil, Qnil);
1480 else
1481 error ("Invalid target for setting a font");
1482
1483
1484 if (charset)
1485 {
1486 font_def_arg = font_def;
1487 add_arg = add;
1488 if (NILP (range_list))
1489 from_arg = to_arg = 0;
1490 else
1491 from_arg = XINT (XCAR (XCAR (range_list))),
1492 to_arg = XINT (XCDR (XCAR (range_list)));
1493
1494 map_charset_chars (set_fontset_font, Qnil, fontset, charset,
1495 CHARSET_MIN_CODE (charset),
1496 CHARSET_MAX_CODE (charset));
1497 }
1498 for (; CONSP (range_list); range_list = XCDR (range_list))
1499 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1500
1501 /* Free all realized fontsets whose base is FONTSET. This way, the
1502 specified character(s) are surely redisplayed by a correct
1503 font. */
1504 free_realized_fontsets (fontset);
1505
1506 return Qnil;
1507 }
1508
1509
1510 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1511 doc: /* Create a new fontset NAME from font information in FONTLIST.
1512
1513 FONTLIST is an alist of scripts vs the corresponding font specification list.
1514 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1515 character of SCRIPT is displayed by a font that matches one of
1516 FONT-SPEC.
1517
1518 SCRIPT is a symbol that appears in the first extra slot of the
1519 char-table `char-script-table'.
1520
1521 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1522 `set-fontset-font' for the meaning. */)
1523 (name, fontlist)
1524 Lisp_Object name, fontlist;
1525 {
1526 Lisp_Object fontset;
1527 int id;
1528
1529 CHECK_STRING (name);
1530 CHECK_LIST (fontlist);
1531
1532 name = Fdowncase (name);
1533 id = fs_query_fontset (name, 0);
1534 if (id < 0)
1535 {
1536 Lisp_Object font_spec = Ffont_spec (0, NULL);
1537 Lisp_Object short_name;
1538 char xlfd[256];
1539 int len;
1540
1541 if (font_parse_xlfd ((char *) SDATA (name), font_spec) < 0)
1542 error ("Fontset name must be in XLFD format");
1543 short_name = AREF (font_spec, FONT_REGISTRY_INDEX);
1544 if (strncmp ((char *) SDATA (SYMBOL_NAME (short_name)), "fontset-", 8)
1545 || SBYTES (SYMBOL_NAME (short_name)) < 9)
1546 error ("Registry field of fontset name must be \"fontset-*\"");
1547 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (short_name)),
1548 Vfontset_alias_alist);
1549 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso8859_1);
1550 fontset = make_fontset (Qnil, name, Qnil);
1551 len = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1552 if (len < 0)
1553 error ("Invalid fontset name (perhaps too long): %s", SDATA (name));
1554 FONTSET_ASCII (fontset) = make_unibyte_string (xlfd, len);
1555 }
1556 else
1557 {
1558 fontset = FONTSET_FROM_ID (id);;
1559 free_realized_fontsets (fontset);
1560 Fset_char_table_range (fontset, Qt, Qnil);
1561 }
1562
1563 for (; ! NILP (fontlist); fontlist = Fcdr (fontlist))
1564 {
1565 Lisp_Object elt, script;
1566
1567 elt = Fcar (fontlist);
1568 script = Fcar (elt);
1569 elt = Fcdr (elt);
1570 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1571 for (; CONSP (elt); elt = XCDR (elt))
1572 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1573 else
1574 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1575 }
1576 return name;
1577 }
1578
1579
1580 /* Alist of automatically created fontsets. Each element is a cons
1581 (FONT-SPEC . FONTSET-ID). */
1582 static Lisp_Object auto_fontset_alist;
1583
1584 int
1585 fontset_from_font (font_object)
1586 Lisp_Object font_object;
1587 {
1588 Lisp_Object font_name = font_get_name (font_object);
1589 Lisp_Object font_spec = Fcopy_font_spec (font_object);
1590 Lisp_Object fontset_spec, alias, name, fontset;
1591 Lisp_Object val;
1592 int i;
1593
1594 val = assoc_no_quit (font_spec, auto_fontset_alist);
1595 if (CONSP (val))
1596 return XINT (FONTSET_ID (XCDR (val)));
1597 if (NILP (auto_fontset_alist))
1598 alias = intern ("fontset-startup");
1599 else
1600 {
1601 char temp[32];
1602 int len = XINT (Flength (auto_fontset_alist));
1603
1604 sprintf (temp, "fontset-auto%d", len);
1605 alias = intern (temp);
1606 }
1607 fontset_spec = Fcopy_font_spec (font_spec);
1608 ASET (fontset_spec, FONT_REGISTRY_INDEX, alias);
1609 name = Ffont_xlfd_name (fontset_spec, Qnil);
1610 if (NILP (name))
1611 abort ();
1612 fontset = make_fontset (Qnil, name, Qnil);
1613 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (alias)),
1614 Vfontset_alias_alist);
1615 alias = Fdowncase (AREF (font_object, FONT_NAME_INDEX));
1616 Vfontset_alias_alist = Fcons (Fcons (name, alias), Vfontset_alias_alist);
1617 auto_fontset_alist = Fcons (Fcons (font_spec, fontset), auto_fontset_alist);
1618 FONTSET_ASCII (fontset) = font_name;
1619 font_spec = Fcopy_font_spec (font_spec);
1620 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso10646_1);
1621 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
1622 ASET (font_spec, i, Qnil);
1623 Fset_fontset_font (name, Qlatin, font_spec, Qnil, Qnil);
1624 Fset_fontset_font (name, Qnil, font_spec, Qnil, Qnil);
1625
1626 #ifdef HAVE_NS
1627 nsfont_make_fontset_for_font(name, font_object);
1628 #endif
1629
1630 return XINT (FONTSET_ID (fontset));
1631 }
1632
1633 /* Return a cons (FONT-OBJECT . GLYPH-CODE).
1634 FONT-OBJECT is the font for the character at POSITION in the current
1635 buffer. This is computed from all the text properties and overlays
1636 that apply to POSITION. POSTION may be nil, in which case,
1637 FONT-SPEC is the font for displaying the character CH with the
1638 default face.
1639
1640 GLYPH-CODE is the glyph code in the font to use for the character.
1641
1642 If the 2nd optional arg CH is non-nil, it is a character to check
1643 the font instead of the character at POSITION.
1644
1645 It returns nil in the following cases:
1646
1647 (1) The window system doesn't have a font for the character (thus
1648 it is displayed by an empty box).
1649
1650 (2) The character code is invalid.
1651
1652 (3) If POSITION is not nil, and the current buffer is not displayed
1653 in any window.
1654
1655 In addition, the returned font name may not take into account of
1656 such redisplay engine hooks as what used in jit-lock-mode if
1657 POSITION is currently not visible. */
1658
1659
1660 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1661 doc: /* For internal use only. */)
1662 (position, ch)
1663 Lisp_Object position, ch;
1664 {
1665 EMACS_INT pos, pos_byte, dummy;
1666 int face_id;
1667 int c;
1668 struct frame *f;
1669 struct face *face;
1670 int cs_id;
1671
1672 if (NILP (position))
1673 {
1674 CHECK_CHARACTER (ch);
1675 c = XINT (ch);
1676 f = XFRAME (selected_frame);
1677 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
1678 pos = -1;
1679 cs_id = -1;
1680 }
1681 else
1682 {
1683 Lisp_Object window, charset;
1684 struct window *w;
1685
1686 CHECK_NUMBER_COERCE_MARKER (position);
1687 pos = XINT (position);
1688 if (pos < BEGV || pos >= ZV)
1689 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1690 pos_byte = CHAR_TO_BYTE (pos);
1691 if (NILP (ch))
1692 c = FETCH_CHAR (pos_byte);
1693 else
1694 {
1695 CHECK_NATNUM (ch);
1696 c = XINT (ch);
1697 }
1698 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1699 if (NILP (window))
1700 return Qnil;
1701 w = XWINDOW (window);
1702 f = XFRAME (w->frame);
1703 face_id = face_at_buffer_position (w, pos, -1, -1, &dummy, pos + 100, 0);
1704 charset = Fget_char_property (position, Qcharset, Qnil);
1705 if (CHARSETP (charset))
1706 cs_id = XINT (CHARSET_SYMBOL_ID (charset));
1707 else
1708 cs_id = -1;
1709 }
1710 if (! CHAR_VALID_P (c, 0))
1711 return Qnil;
1712 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1713 face = FACE_FROM_ID (f, face_id);
1714 if (face->font)
1715 {
1716 unsigned code = face->font->driver->encode_char (face->font, c);
1717 Lisp_Object font_object;
1718 /* Assignment to EMACS_INT stops GCC whining about limited range
1719 of data type. */
1720 EMACS_INT cod = code;
1721
1722 if (code == FONT_INVALID_CODE)
1723 return Qnil;
1724 XSETFONT (font_object, face->font);
1725 if (cod <= MOST_POSITIVE_FIXNUM)
1726 return Fcons (font_object, make_number (code));
1727 return Fcons (font_object, Fcons (make_number (code >> 16),
1728 make_number (code & 0xFFFF)));
1729 }
1730 return Qnil;
1731 }
1732
1733
1734 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1735 doc: /* Return information about a fontset FONTSET on frame FRAME.
1736 The value is a char-table whose elements have this form:
1737
1738 ((FONT-PATTERN OPENED-FONT ...) ...)
1739
1740 FONT-PATTERN is a vector:
1741
1742 [ FAMILY WEIGHT SLANT SWIDTH ADSTYLE REGISTRY ]
1743
1744 or a string of font name pattern.
1745
1746 OPENED-FONT is a name of a font actually opened.
1747
1748 The char-table has one extra slot. The value is a char-table
1749 containing the information about the derived fonts from the default
1750 fontset. The format is the same as above. */)
1751 (fontset, frame)
1752 Lisp_Object fontset, frame;
1753 {
1754 FRAME_PTR f;
1755 Lisp_Object *realized[2], fontsets[2], tables[2];
1756 Lisp_Object val, elt;
1757 int c, i, j, k;
1758
1759 (*check_window_system_func) ();
1760
1761 fontset = check_fontset_name (fontset);
1762
1763 if (NILP (frame))
1764 frame = selected_frame;
1765 CHECK_LIVE_FRAME (frame);
1766 f = XFRAME (frame);
1767
1768 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1769 in the table `realized'. */
1770 realized[0] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1771 * ASIZE (Vfontset_table));
1772 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1773 {
1774 elt = FONTSET_FROM_ID (i);
1775 if (!NILP (elt)
1776 && EQ (FONTSET_BASE (elt), fontset)
1777 && EQ (FONTSET_FRAME (elt), frame))
1778 realized[0][j++] = elt;
1779 }
1780 realized[0][j] = Qnil;
1781
1782 realized[1] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1783 * ASIZE (Vfontset_table));
1784 for (i = j = 0; ! NILP (realized[0][i]); i++)
1785 {
1786 elt = FONTSET_DEFAULT (realized[0][i]);
1787 if (! NILP (elt))
1788 realized[1][j++] = elt;
1789 }
1790 realized[1][j] = Qnil;
1791
1792 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1793 tables[1] = Fmake_char_table (Qnil, Qnil);
1794 XCHAR_TABLE (tables[0])->extras[0] = tables[1];
1795 fontsets[0] = fontset;
1796 fontsets[1] = Vdefault_fontset;
1797
1798 /* Accumulate information of the fontset in TABLE. The format of
1799 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1800 for (k = 0; k <= 1; k++)
1801 {
1802 for (c = 0; c <= MAX_CHAR; )
1803 {
1804 int from, to;
1805
1806 if (c <= MAX_5_BYTE_CHAR)
1807 {
1808 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1809 if (to > MAX_5_BYTE_CHAR)
1810 to = MAX_5_BYTE_CHAR;
1811 }
1812 else
1813 {
1814 val = FONTSET_FALLBACK (fontsets[k]);
1815 to = MAX_CHAR;
1816 }
1817 if (VECTORP (val))
1818 {
1819 Lisp_Object alist;
1820
1821 /* At first, set ALIST to ((FONT-SPEC) ...). */
1822 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1823 if (! NILP (AREF (val, i)))
1824 alist = Fcons (Fcons (FONT_DEF_SPEC (AREF (val, i)), Qnil),
1825 alist);
1826 alist = Fnreverse (alist);
1827
1828 /* Then store opened font names to cdr of each elements. */
1829 for (i = 0; ! NILP (realized[k][i]); i++)
1830 {
1831 if (c <= MAX_5_BYTE_CHAR)
1832 val = FONTSET_REF (realized[k][i], c);
1833 else
1834 val = FONTSET_FALLBACK (realized[k][i]);
1835 if (! VECTORP (val))
1836 continue;
1837 /* VAL: [int ? [FACE-ID FONT-DEF FONT-OBJECT int] ... ] */
1838 for (j = 2; j < ASIZE (val); j++)
1839 {
1840 elt = AREF (val, j);
1841 if (FONT_OBJECT_P (RFONT_DEF_OBJECT (elt)))
1842 {
1843 Lisp_Object font_object = RFONT_DEF_OBJECT (elt);
1844 Lisp_Object slot, name;
1845
1846 slot = Fassq (RFONT_DEF_SPEC (elt), alist);
1847 name = AREF (font_object, FONT_NAME_INDEX);
1848 if (NILP (Fmember (name, XCDR (slot))))
1849 nconc2 (slot, Fcons (name, Qnil));
1850 }
1851 }
1852 }
1853
1854 /* Store ALIST in TBL for characters C..TO. */
1855 if (c <= MAX_5_BYTE_CHAR)
1856 char_table_set_range (tables[k], c, to, alist);
1857 else
1858 XCHAR_TABLE (tables[k])->defalt = alist;
1859
1860 /* At last, change each elements to font names. */
1861 for (; CONSP (alist); alist = XCDR (alist))
1862 {
1863 elt = XCAR (alist);
1864 XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil));
1865 }
1866 }
1867 c = to + 1;
1868 }
1869 }
1870
1871 return tables[0];
1872 }
1873
1874
1875 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
1876 doc: /* Return a font name pattern for character CH in fontset NAME.
1877 If NAME is t, find a pattern in the default fontset.
1878
1879 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
1880 family name and REGISTRY is a font registry name. This is actually
1881 the first font name pattern for CH in the fontset or in the default
1882 fontset.
1883
1884 If the 2nd optional arg ALL is non-nil, return a list of all font name
1885 patterns. */)
1886 (name, ch, all)
1887 Lisp_Object name, ch, all;
1888 {
1889 int c;
1890 Lisp_Object fontset, elt, list, repertory, val;
1891 int i, j;
1892
1893 fontset = check_fontset_name (name);
1894
1895 CHECK_CHARACTER (ch);
1896 c = XINT (ch);
1897 list = Qnil;
1898 while (1)
1899 {
1900 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
1901 i++, elt = FONTSET_FALLBACK (fontset))
1902 if (VECTORP (elt))
1903 for (j = 0; j < ASIZE (elt); j++)
1904 {
1905 val = AREF (elt, j);
1906 repertory = AREF (val, 1);
1907 if (INTEGERP (repertory))
1908 {
1909 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
1910
1911 if (! CHAR_CHARSET_P (c, charset))
1912 continue;
1913 }
1914 else if (CHAR_TABLE_P (repertory))
1915 {
1916 if (NILP (CHAR_TABLE_REF (repertory, c)))
1917 continue;
1918 }
1919 val = AREF (val, 0);
1920 val = Fcons (AREF (val, 0), AREF (val, 5));
1921 if (NILP (all))
1922 return val;
1923 list = Fcons (val, list);
1924 }
1925 if (EQ (fontset, Vdefault_fontset))
1926 break;
1927 fontset = Vdefault_fontset;
1928 }
1929 return (Fnreverse (list));
1930 }
1931
1932 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
1933 doc: /* Return a list of all defined fontset names. */)
1934 ()
1935 {
1936 Lisp_Object fontset, list;
1937 int i;
1938
1939 list = Qnil;
1940 for (i = 0; i < ASIZE (Vfontset_table); i++)
1941 {
1942 fontset = FONTSET_FROM_ID (i);
1943 if (!NILP (fontset)
1944 && BASE_FONTSET_P (fontset))
1945 list = Fcons (FONTSET_NAME (fontset), list);
1946 }
1947
1948 return list;
1949 }
1950
1951
1952 #ifdef FONTSET_DEBUG
1953
1954 Lisp_Object
1955 dump_fontset (fontset)
1956 Lisp_Object fontset;
1957 {
1958 Lisp_Object vec;
1959
1960 vec = Fmake_vector (make_number (3), Qnil);
1961 ASET (vec, 0, FONTSET_ID (fontset));
1962
1963 if (BASE_FONTSET_P (fontset))
1964 {
1965 ASET (vec, 1, FONTSET_NAME (fontset));
1966 }
1967 else
1968 {
1969 Lisp_Object frame;
1970
1971 frame = FONTSET_FRAME (fontset);
1972 if (FRAMEP (frame))
1973 {
1974 FRAME_PTR f = XFRAME (frame);
1975
1976 if (FRAME_LIVE_P (f))
1977 ASET (vec, 1,
1978 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), f->name));
1979 else
1980 ASET (vec, 1,
1981 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), Qnil));
1982 }
1983 if (!NILP (FONTSET_DEFAULT (fontset)))
1984 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
1985 }
1986 return vec;
1987 }
1988
1989 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
1990 doc: /* Return a brief summary of all fontsets for debug use. */)
1991 ()
1992 {
1993 Lisp_Object val;
1994 int i;
1995
1996 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
1997 if (! NILP (AREF (Vfontset_table, i)))
1998 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
1999 return (Fnreverse (val));
2000 }
2001 #endif /* FONTSET_DEBUG */
2002
2003 void
2004 syms_of_fontset ()
2005 {
2006 DEFSYM (Qfontset, "fontset");
2007 Fput (Qfontset, Qchar_table_extra_slots, make_number (9));
2008 DEFSYM (Qfontset_info, "fontset-info");
2009 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2010
2011 DEFSYM (Qprepend, "prepend");
2012 DEFSYM (Qappend, "append");
2013 DEFSYM (Qlatin, "latin");
2014
2015 Vcached_fontset_data = Qnil;
2016 staticpro (&Vcached_fontset_data);
2017
2018 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2019 staticpro (&Vfontset_table);
2020
2021 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2022 staticpro (&Vdefault_fontset);
2023 FONTSET_ID (Vdefault_fontset) = make_number (0);
2024 FONTSET_NAME (Vdefault_fontset)
2025 = build_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default");
2026 ASET (Vfontset_table, 0, Vdefault_fontset);
2027 next_fontset_id = 1;
2028
2029 auto_fontset_alist = Qnil;
2030 staticpro (&auto_fontset_alist);
2031
2032 DEFVAR_LISP ("font-encoding-charset-alist", &Vfont_encoding_charset_alist,
2033 doc: /*
2034 Alist of charsets vs the charsets to determine the preferred font encoding.
2035 Each element looks like (CHARSET . ENCODING-CHARSET),
2036 where ENCODING-CHARSET is a charset registered in the variable
2037 `font-encoding-alist' as ENCODING.
2038
2039 When a text has a property `charset' and the value is CHARSET, a font
2040 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2041 Vfont_encoding_charset_alist = Qnil;
2042
2043 DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent,
2044 doc: /*
2045 Char table of characters whose ascent values should be ignored.
2046 If an entry for a character is non-nil, the ascent value of the glyph
2047 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2048
2049 This affects how a composite character which contains
2050 such a character is displayed on screen. */);
2051 Vuse_default_ascent = Qnil;
2052
2053 DEFVAR_LISP ("ignore-relative-composition", &Vignore_relative_composition,
2054 doc: /*
2055 Char table of characters which are not composed relatively.
2056 If an entry for a character is non-nil, a composition sequence
2057 which contains that character is displayed so that
2058 the glyph of that character is put without considering
2059 an ascent and descent value of a previous character. */);
2060 Vignore_relative_composition = Qnil;
2061
2062 DEFVAR_LISP ("alternate-fontname-alist", &Valternate_fontname_alist,
2063 doc: /* Alist of fontname vs list of the alternate fontnames.
2064 When a specified font name is not found, the corresponding
2065 alternate fontnames (if any) are tried instead. */);
2066 Valternate_fontname_alist = Qnil;
2067
2068 DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist,
2069 doc: /* Alist of fontset names vs the aliases. */);
2070 Vfontset_alias_alist = Fcons (Fcons (FONTSET_NAME (Vdefault_fontset),
2071 build_string ("fontset-default")),
2072 Qnil);
2073
2074 DEFVAR_LISP ("vertical-centering-font-regexp",
2075 &Vvertical_centering_font_regexp,
2076 doc: /* *Regexp matching font names that require vertical centering on display.
2077 When a character is displayed with such fonts, the character is displayed
2078 at the vertical center of lines. */);
2079 Vvertical_centering_font_regexp = Qnil;
2080
2081 DEFVAR_LISP ("otf-script-alist", &Votf_script_alist,
2082 doc: /* Alist of OpenType script tags vs the corresponding script names. */);
2083 Votf_script_alist = Qnil;
2084
2085 defsubr (&Squery_fontset);
2086 defsubr (&Snew_fontset);
2087 defsubr (&Sset_fontset_font);
2088 defsubr (&Sinternal_char_font);
2089 defsubr (&Sfontset_info);
2090 defsubr (&Sfontset_font);
2091 defsubr (&Sfontset_list);
2092 #ifdef FONTSET_DEBUG
2093 defsubr (&Sfontset_list_all);
2094 #endif
2095 }
2096
2097 /* arch-tag: ea861585-2f5f-4e5b-9849-d04a9c3a3537
2098 (do not change this comment) */