Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / fontset.c
blob13f5357be6463e19a53b3af8af985aeef024232d
1 /* Fontset handler.
3 Copyright (C) 2001-2014 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
12 This file is part of GNU Emacs.
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.
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.
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/>. */
27 #include <config.h>
28 #include <stdio.h>
30 #include "lisp.h"
31 #include "blockinput.h"
32 #include "character.h"
33 #include "buffer.h"
34 #include "charset.h"
35 #include "ccl.h"
36 #include "keyboard.h"
37 #include "frame.h"
38 #include "dispextern.h"
39 #include "intervals.h"
40 #include "fontset.h"
41 #include "window.h"
42 #ifdef HAVE_WINDOW_SYSTEM
43 #include TERM_HEADER
44 #endif /* HAVE_WINDOW_SYSTEM */
45 #include "termhooks.h"
46 #include "font.h"
48 /* FONTSET
50 A fontset is a collection of font related information to give
51 similar appearance (style, etc) of characters. A fontset has two
52 roles. One is to use for the frame parameter `font' as if it is an
53 ASCII font. In that case, Emacs uses the font specified for
54 `ascii' script for the frame's default font.
56 Another role, the more important one, is to provide information
57 about which font to use for each non-ASCII character.
59 There are two kinds of fontsets; base and realized. A base fontset
60 is created by `new-fontset' from Emacs Lisp explicitly. A realized
61 fontset is created implicitly when a face is realized for ASCII
62 characters. A face is also realized for non-ASCII characters based
63 on an ASCII face. All of non-ASCII faces based on the same ASCII
64 face share the same realized fontset.
66 A fontset object is implemented by a char-table whose default value
67 and parent are always nil.
69 An element of a base fontset is a vector of FONT-DEFs which itself
70 is a vector [ FONT-SPEC ENCODING REPERTORY ].
72 An element of a realized fontset is nil, t, 0, or a vector of this
73 form:
75 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
76 RFONT-DEF0 RFONT-DEF1 ... ]
78 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
80 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
82 RFONT-DEFn are automatically reordered by the current charset
83 priority list.
85 The value nil means that we have not yet generated the above vector
86 from the base of the fontset.
88 The value t means that no font is available for the corresponding
89 range of characters.
91 The value 0 means that no font is available for the corresponding
92 range of characters in this fontset, but may be available in the
93 default fontset.
96 A fontset has 9 extra slots.
98 The 1st slot: the ID number of the fontset
100 The 2nd slot:
101 base: the name of the fontset
102 realized: nil
104 The 3rd slot:
105 base: nil
106 realized: the base fontset
108 The 4th slot:
109 base: nil
110 realized: the frame that the fontset belongs to
112 The 5th slot:
113 base: the font name for ASCII characters
114 realized: nil
116 The 6th slot:
117 base: nil
118 realized: the ID number of a face to use for characters that
119 has no font in a realized fontset.
121 The 7th slot:
122 base: nil
123 realized: Alist of font index vs the corresponding repertory
124 char-table.
126 The 8th slot:
127 base: nil
128 realized: If the base is not the default fontset, a fontset
129 realized from the default fontset, else nil.
131 The 9th slot:
132 base: Same as element value (but for fallback fonts).
133 realized: Likewise.
135 All fontsets are recorded in the vector Vfontset_table.
138 DEFAULT FONTSET
140 There's a special base fontset named `default fontset' which
141 defines the default font specifications. When a base fontset
142 doesn't specify a font for a specific character, the corresponding
143 value in the default fontset is used.
145 The parent of a realized fontset created for such a face that has
146 no fontset is the default fontset.
149 These structures are hidden from the other codes than this file.
150 The other codes handle fontsets only by their ID numbers. They
151 usually use the variable name `fontset' for IDs. But, in this
152 file, we always use variable name `id' for IDs, and name `fontset'
153 for an actual fontset object, i.e., char-table.
157 /********** VARIABLES and FUNCTION PROTOTYPES **********/
159 static Lisp_Object Qfontset;
160 static Lisp_Object Qfontset_info;
161 static Lisp_Object Qprepend, Qappend;
162 Lisp_Object Qlatin;
164 /* Vector containing all fontsets. */
165 static Lisp_Object Vfontset_table;
167 /* Next possibly free fontset ID. Usually this keeps the minimum
168 fontset ID not yet used. */
169 static int next_fontset_id;
171 /* The default fontset. This gives default FAMILY and REGISTRY of
172 font for each character. */
173 static Lisp_Object Vdefault_fontset;
175 /* Prototype declarations for static functions. */
176 static Lisp_Object make_fontset (Lisp_Object, Lisp_Object, Lisp_Object);
178 /* Return true if ID is a valid fontset id.
179 Optimized away if ENABLE_CHECKING is not defined. */
181 static bool
182 fontset_id_valid_p (int id)
184 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
189 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
191 /* Return the fontset with ID. No check of ID's validness. */
192 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
194 /* Access special values of FONTSET. */
196 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
197 static void
198 set_fontset_id (Lisp_Object fontset, Lisp_Object id)
200 set_char_table_extras (fontset, 0, id);
203 /* Access special values of (base) FONTSET. */
205 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
206 static void
207 set_fontset_name (Lisp_Object fontset, Lisp_Object name)
209 set_char_table_extras (fontset, 1, name);
212 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
213 static void
214 set_fontset_ascii (Lisp_Object fontset, Lisp_Object ascii)
216 set_char_table_extras (fontset, 4, ascii);
219 /* Access special values of (realized) FONTSET. */
221 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
222 static void
223 set_fontset_base (Lisp_Object fontset, Lisp_Object base)
225 set_char_table_extras (fontset, 2, base);
228 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
229 static void
230 set_fontset_frame (Lisp_Object fontset, Lisp_Object frame)
232 set_char_table_extras (fontset, 3, frame);
235 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
236 static void
237 set_fontset_nofont_face (Lisp_Object fontset, Lisp_Object face)
239 set_char_table_extras (fontset, 5, face);
242 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
243 static void
244 set_fontset_default (Lisp_Object fontset, Lisp_Object def)
246 set_char_table_extras (fontset, 7, def);
249 /* For both base and realized fontset. */
251 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
252 static void
253 set_fontset_fallback (Lisp_Object fontset, Lisp_Object fallback)
255 set_char_table_extras (fontset, 8, fallback);
258 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
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) = make_uninit_vector (3); \
264 ASET ((font_def), 0, font_spec); \
265 ASET ((font_def), 1, encoding); \
266 ASET ((font_def), 2, repertory); \
267 } while (0)
269 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
270 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
271 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
273 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
274 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
275 ASET ((rfont_def), 0, make_number (face_id))
276 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
277 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (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 /* Score of RFONT_DEF is an integer value; the lowest 8 bits represent
282 the order of listing by font backends, the higher bits represents
283 the order given by charset priority list. The smaller value is
284 preferable. */
285 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
286 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
287 ASET ((rfont_def), 3, make_number (score))
288 #define RFONT_DEF_NEW(rfont_def, font_def) \
289 do { \
290 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
291 ASET ((rfont_def), 1, (font_def)); \
292 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
293 } while (0)
296 /* Return the element of FONTSET for the character C. If FONTSET is a
297 base fontset other then the default fontset and FONTSET doesn't
298 contain information for C, return the information in the default
299 fontset. */
301 #define FONTSET_REF(fontset, c) \
302 (EQ (fontset, Vdefault_fontset) \
303 ? CHAR_TABLE_REF (fontset, c) \
304 : fontset_ref ((fontset), (c)))
306 static Lisp_Object
307 fontset_ref (Lisp_Object fontset, int c)
309 Lisp_Object elt;
311 elt = CHAR_TABLE_REF (fontset, c);
312 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
313 /* Don't check Vdefault_fontset for a realized fontset. */
314 && NILP (FONTSET_BASE (fontset)))
315 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
316 return elt;
319 /* Set elements of FONTSET for characters in RANGE to the value ELT.
320 RANGE is a cons (FROM . TO), where FROM and TO are character codes
321 specifying a range. */
323 #define FONTSET_SET(fontset, range, elt) \
324 Fset_char_table_range ((fontset), (range), (elt))
327 /* Modify the elements of FONTSET for characters in RANGE by replacing
328 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
329 and TO are character codes specifying a range. If ADD is nil,
330 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
331 append ELT. */
333 #define FONTSET_ADD(fontset, range, elt, add) \
334 (NILP (add) \
335 ? (NILP (range) \
336 ? (set_fontset_fallback \
337 (fontset, Fmake_vector (make_number (1), (elt)))) \
338 : ((void) \
339 Fset_char_table_range (fontset, range, \
340 Fmake_vector (make_number (1), elt)))) \
341 : fontset_add ((fontset), (range), (elt), (add)))
343 static void
344 fontset_add (Lisp_Object fontset, Lisp_Object range, Lisp_Object elt, Lisp_Object add)
346 Lisp_Object args[2];
347 int idx = (EQ (add, Qappend) ? 0 : 1);
349 args[1 - idx] = Fmake_vector (make_number (1), elt);
351 if (CONSP (range))
353 int from = XINT (XCAR (range));
354 int to = XINT (XCDR (range));
355 int from1, to1;
357 do {
358 from1 = from, to1 = to;
359 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
360 char_table_set_range (fontset, from, to1,
361 NILP (args[idx]) ? args[1 - idx]
362 : Fvconcat (2, args));
363 from = to1 + 1;
364 } while (from < to);
366 else
368 args[idx] = FONTSET_FALLBACK (fontset);
369 set_fontset_fallback
370 (fontset, NILP (args[idx]) ? args[1 - idx] : Fvconcat (2, args));
374 static int
375 fontset_compare_rfontdef (const void *val1, const void *val2)
377 return (RFONT_DEF_SCORE (*(Lisp_Object *) val1)
378 - RFONT_DEF_SCORE (*(Lisp_Object *) val2));
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.
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. */
390 static void
391 reorder_font_vector (Lisp_Object font_group, struct font *font)
393 Lisp_Object vec, font_object;
394 int size;
395 int i;
396 bool score_changed = 0;
398 if (font)
399 XSETFONT (font_object, font);
400 else
401 font_object = Qnil;
403 vec = XCDR (font_group);
404 size = ASIZE (vec);
405 /* Exclude the tailing nil element from the reordering. */
406 if (NILP (AREF (vec, size - 1)))
407 size--;
409 for (i = 0; i < size; i++)
411 Lisp_Object rfont_def = AREF (vec, i);
412 Lisp_Object font_def = RFONT_DEF_FONT_DEF (rfont_def);
413 Lisp_Object font_spec = FONT_DEF_SPEC (font_def);
414 int score = RFONT_DEF_SCORE (rfont_def) & 0xFF;
415 Lisp_Object otf_spec = Ffont_get (font_spec, QCotf);
417 if (! NILP (otf_spec))
418 /* A font-spec with :otf is preferable regardless of encoding
419 and language.. */
421 else if (! font_match_p (font_spec, font_object))
423 Lisp_Object encoding = FONT_DEF_ENCODING (font_def);
425 if (! NILP (encoding))
427 Lisp_Object tail;
429 for (tail = Vcharset_ordered_list;
430 ! EQ (tail, Vcharset_non_preferred_head) && CONSP (tail);
431 tail = XCDR (tail))
432 if (EQ (encoding, XCAR (tail)))
433 break;
434 else if (score <= min (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100)
435 score += 0x100;
437 else
439 Lisp_Object lang = Ffont_get (font_spec, QClang);
441 if (! NILP (lang)
442 && ! EQ (lang, Vcurrent_iso639_language)
443 && (! CONSP (Vcurrent_iso639_language)
444 || NILP (Fmemq (lang, Vcurrent_iso639_language))))
445 score |= 0x100;
448 if (RFONT_DEF_SCORE (rfont_def) != score)
450 RFONT_DEF_SET_SCORE (rfont_def, score);
451 score_changed = 1;
455 if (score_changed)
456 qsort (XVECTOR (vec)->contents, size, word_size,
457 fontset_compare_rfontdef);
458 XSETCAR (font_group, make_number (charset_ordered_list_tick));
461 /* Return a font-group (actually a cons (-1 . FONT-GROUP-VECTOR)) for
462 character C in FONTSET. If C is -1, return a fallback font-group.
463 If C is not -1, the value may be Qt (FONTSET doesn't have a font
464 for C even in the fallback group), or 0 (a font for C may be found
465 only in the fallback group). */
467 static Lisp_Object
468 fontset_get_font_group (Lisp_Object fontset, int c)
470 Lisp_Object font_group;
471 Lisp_Object base_fontset;
472 int from = 0, to = MAX_CHAR, i;
474 eassert (! BASE_FONTSET_P (fontset));
475 if (c >= 0)
476 font_group = CHAR_TABLE_REF (fontset, c);
477 else
478 font_group = FONTSET_FALLBACK (fontset);
479 if (! NILP (font_group))
480 return font_group;
481 base_fontset = FONTSET_BASE (fontset);
482 if (NILP (base_fontset))
483 font_group = Qnil;
484 else if (c >= 0)
485 font_group = char_table_ref_and_range (base_fontset, c, &from, &to);
486 else
487 font_group = FONTSET_FALLBACK (base_fontset);
488 if (NILP (font_group))
490 font_group = make_number (0);
491 if (c >= 0)
492 char_table_set_range (fontset, from, to, font_group);
493 return font_group;
495 if (!VECTORP (font_group))
496 return font_group;
497 font_group = Fcopy_sequence (font_group);
498 for (i = 0; i < ASIZE (font_group); i++)
499 if (! NILP (AREF (font_group, i)))
501 Lisp_Object rfont_def;
503 RFONT_DEF_NEW (rfont_def, AREF (font_group, i));
504 /* Remember the original order. */
505 RFONT_DEF_SET_SCORE (rfont_def, i);
506 ASET (font_group, i, rfont_def);
508 font_group = Fcons (make_number (-1), font_group);
509 if (c >= 0)
510 char_table_set_range (fontset, from, to, font_group);
511 else
512 set_fontset_fallback (fontset, font_group);
513 return font_group;
516 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
517 character C. If no font is found, return Qnil if there's a
518 possibility that the default fontset or the fallback font groups
519 have a proper font, and return Qt if not.
521 If a font is found but is not yet opened, open it (if FACE is not
522 NULL) or return Qnil (if FACE is NULL).
524 ID is a charset-id that must be preferred, or -1 meaning no
525 preference.
527 If FALLBACK, search only fallback fonts. */
529 static Lisp_Object
530 fontset_find_font (Lisp_Object fontset, int c, struct face *face, int id,
531 bool fallback)
533 Lisp_Object vec, font_group;
534 int i, charset_matched = 0, found_index;
535 struct frame *f = (FRAMEP (FONTSET_FRAME (fontset))
536 ? XFRAME (FONTSET_FRAME (fontset))
537 : XFRAME (selected_frame));
538 Lisp_Object rfont_def;
540 font_group = fontset_get_font_group (fontset, fallback ? -1 : c);
541 if (! CONSP (font_group))
542 return font_group;
543 vec = XCDR (font_group);
544 if (ASIZE (vec) == 0)
545 return Qnil;
547 if (ASIZE (vec) > 1)
549 if (XINT (XCAR (font_group)) != charset_ordered_list_tick)
550 /* We have just created the font-group,
551 or the charset priorities were changed. */
552 reorder_font_vector (font_group, face->ascii_face->font);
553 if (id >= 0)
554 /* Find a spec matching with the charset ID to try at
555 first. */
556 for (i = 0; i < ASIZE (vec); i++)
558 Lisp_Object repertory;
560 rfont_def = AREF (vec, i);
561 if (NILP (rfont_def))
562 break;
563 repertory = FONT_DEF_REPERTORY (RFONT_DEF_FONT_DEF (rfont_def));
565 if (XINT (repertory) == id)
567 charset_matched = i;
568 break;
573 /* Find the first available font in the vector of RFONT-DEF. */
574 for (i = 0; i < ASIZE (vec); i++)
576 Lisp_Object font_def;
577 Lisp_Object font_entity, font_object;
579 found_index = i;
580 if (i == 0)
582 if (charset_matched > 0)
584 /* Try the element matching with the charset ID at first. */
585 found_index = charset_matched;
586 /* Make this negative so that we don't come here in the
587 next loop. */
588 charset_matched = - charset_matched;
589 /* We must try the first element in the next loop. */
590 i--;
593 else if (i == - charset_matched)
595 /* We have already tried this element and the followings
596 that have the same font specifications in the first
597 iteration. So, skip them all. */
598 rfont_def = AREF (vec, i);
599 font_def = RFONT_DEF_FONT_DEF (rfont_def);
600 for (; i + 1 < ASIZE (vec); i++)
602 rfont_def = AREF (vec, i + 1);
603 if (NILP (rfont_def))
604 break;
605 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
606 break;
608 continue;
611 rfont_def = AREF (vec, found_index);
612 if (NILP (rfont_def))
614 if (i < 0)
615 continue;
616 /* This is a sign of not to try the other fonts. */
617 return Qt;
619 if (INTEGERP (RFONT_DEF_FACE (rfont_def))
620 && XINT (RFONT_DEF_FACE (rfont_def)) < 0)
621 /* We couldn't open this font last time. */
622 continue;
624 font_object = RFONT_DEF_OBJECT (rfont_def);
625 if (NILP (font_object))
627 font_def = RFONT_DEF_FONT_DEF (rfont_def);
629 if (! face)
630 /* We have not yet opened the font. */
631 return Qnil;
632 /* Find a font best-matching with the spec without checking
633 the support of the character C. That checking is costly,
634 and even without the checking, the found font supports C
635 in high possibility. */
636 font_entity = font_find_for_lface (f, face->lface,
637 FONT_DEF_SPEC (font_def), -1);
638 if (NILP (font_entity))
640 /* Record that no font matches the spec. */
641 RFONT_DEF_SET_FACE (rfont_def, -1);
642 continue;
644 font_object = font_open_for_lface (f, font_entity, face->lface,
645 FONT_DEF_SPEC (font_def));
646 if (NILP (font_object))
648 /* Something strange happened, perhaps because of a
649 Font-backend problem. Too avoid crashing, record
650 that this spec is unusable. It may be better to find
651 another font of the same spec, but currently we don't
652 have such an API. */
653 RFONT_DEF_SET_FACE (rfont_def, -1);
654 continue;
656 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
659 if (font_has_char (f, font_object, c))
660 goto found;
662 /* Find a font already opened, matching with the current spec,
663 and supporting C. */
664 font_def = RFONT_DEF_FONT_DEF (rfont_def);
665 for (; found_index + 1 < ASIZE (vec); found_index++)
667 rfont_def = AREF (vec, found_index + 1);
668 if (NILP (rfont_def))
669 break;
670 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
671 break;
672 font_object = RFONT_DEF_OBJECT (rfont_def);
673 if (! NILP (font_object) && font_has_char (f, font_object, c))
675 found_index++;
676 goto found;
680 /* Find a font-entity with the current spec and supporting C. */
681 font_entity = font_find_for_lface (f, face->lface,
682 FONT_DEF_SPEC (font_def), c);
683 if (! NILP (font_entity))
685 /* We found a font. Open it and insert a new element for
686 that font in VEC. */
687 Lisp_Object new_vec;
688 int j;
690 font_object = font_open_for_lface (f, font_entity, face->lface,
691 Qnil);
692 if (NILP (font_object))
693 continue;
694 RFONT_DEF_NEW (rfont_def, font_def);
695 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
696 RFONT_DEF_SET_SCORE (rfont_def, RFONT_DEF_SCORE (rfont_def));
697 new_vec = Fmake_vector (make_number (ASIZE (vec) + 1), Qnil);
698 found_index++;
699 for (j = 0; j < found_index; j++)
700 ASET (new_vec, j, AREF (vec, j));
701 ASET (new_vec, j, rfont_def);
702 for (j++; j < ASIZE (new_vec); j++)
703 ASET (new_vec, j, AREF (vec, j - 1));
704 XSETCDR (font_group, new_vec);
705 vec = new_vec;
706 goto found;
708 if (i >= 0)
709 i = found_index;
712 FONTSET_SET (fontset, make_number (c), make_number (0));
713 return Qnil;
715 found:
716 if (fallback && found_index > 0)
718 /* The order of fonts in the fallback font-group is not that
719 important, and it is better to move the found font to the
720 first of the group so that the next try will find it
721 quickly. */
722 for (i = found_index; i > 0; i--)
723 ASET (vec, i, AREF (vec, i - 1));
724 ASET (vec, 0, rfont_def);
726 return rfont_def;
730 static Lisp_Object
731 fontset_font (Lisp_Object fontset, int c, struct face *face, int id)
733 Lisp_Object rfont_def, default_rfont_def IF_LINT (= Qnil);
734 Lisp_Object base_fontset;
736 /* Try a font-group of FONTSET. */
737 FONT_DEFERRED_LOG ("current fontset: font for", make_number (c), Qnil);
738 rfont_def = fontset_find_font (fontset, c, face, id, 0);
739 if (VECTORP (rfont_def))
740 return rfont_def;
741 if (NILP (rfont_def))
742 FONTSET_SET (fontset, make_number (c), make_number (0));
744 /* Try a font-group of the default fontset. */
745 base_fontset = FONTSET_BASE (fontset);
746 if (! EQ (base_fontset, Vdefault_fontset))
748 if (NILP (FONTSET_DEFAULT (fontset)))
749 set_fontset_default
750 (fontset,
751 make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset));
752 FONT_DEFERRED_LOG ("default fontset: font for", make_number (c), Qnil);
753 default_rfont_def
754 = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0);
755 if (VECTORP (default_rfont_def))
756 return default_rfont_def;
757 if (NILP (default_rfont_def))
758 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c),
759 make_number (0));
762 /* Try a fallback font-group of FONTSET. */
763 if (! EQ (rfont_def, Qt))
765 FONT_DEFERRED_LOG ("current fallback: font for", make_number (c), Qnil);
766 rfont_def = fontset_find_font (fontset, c, face, id, 1);
767 if (VECTORP (rfont_def))
768 return rfont_def;
769 /* Remember that FONTSET has no font for C. */
770 FONTSET_SET (fontset, make_number (c), Qt);
773 /* Try a fallback font-group of the default fontset. */
774 if (! EQ (base_fontset, Vdefault_fontset)
775 && ! EQ (default_rfont_def, Qt))
777 FONT_DEFERRED_LOG ("default fallback: font for", make_number (c), Qnil);
778 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1);
779 if (VECTORP (rfont_def))
780 return rfont_def;
781 /* Remember that the default fontset has no font for C. */
782 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c), Qt);
785 return Qnil;
788 /* Return a newly created fontset with NAME. If BASE is nil, make a
789 base fontset. Otherwise make a realized fontset whose base is
790 BASE. */
792 static Lisp_Object
793 make_fontset (Lisp_Object frame, Lisp_Object name, Lisp_Object base)
795 Lisp_Object fontset;
796 int size = ASIZE (Vfontset_table);
797 int id = next_fontset_id;
799 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
800 the next available fontset ID. So it is expected that this loop
801 terminates quickly. In addition, as the last element of
802 Vfontset_table is always nil, we don't have to check the range of
803 id. */
804 while (!NILP (AREF (Vfontset_table, id))) id++;
806 if (id + 1 == size)
807 Vfontset_table = larger_vector (Vfontset_table, 1, -1);
809 fontset = Fmake_char_table (Qfontset, Qnil);
811 set_fontset_id (fontset, make_number (id));
812 if (NILP (base))
813 set_fontset_name (fontset, name);
814 else
816 set_fontset_name (fontset, Qnil);
817 set_fontset_frame (fontset, frame);
818 set_fontset_base (fontset, base);
821 ASET (Vfontset_table, id, fontset);
822 next_fontset_id = id + 1;
823 return fontset;
827 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
829 /* Return the name of the fontset who has ID. */
831 Lisp_Object
832 fontset_name (int id)
834 Lisp_Object fontset;
836 fontset = FONTSET_FROM_ID (id);
837 return FONTSET_NAME (fontset);
841 /* Return the ASCII font name of the fontset who has ID. */
843 Lisp_Object
844 fontset_ascii (int id)
846 Lisp_Object fontset, elt;
848 fontset= FONTSET_FROM_ID (id);
849 elt = FONTSET_ASCII (fontset);
850 if (CONSP (elt))
851 elt = XCAR (elt);
852 return elt;
855 static void
856 free_realized_fontset (struct frame *f, Lisp_Object fontset)
858 #if 0
859 Lisp_Object tail;
861 if (0)
862 for (tail = FONTSET_OBJLIST (fontset); CONSP (tail); tail = XCDR (tail))
864 eassert (FONT_OBJECT_P (XCAR (tail)));
865 font_close_object (f, XCAR (tail));
867 #endif
870 /* Free fontset of FACE defined on frame F. Called from
871 free_realized_face. */
873 void
874 free_face_fontset (struct frame *f, struct face *face)
876 Lisp_Object fontset;
878 fontset = FONTSET_FROM_ID (face->fontset);
879 if (NILP (fontset))
880 return;
881 eassert (! BASE_FONTSET_P (fontset));
882 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
883 free_realized_fontset (f, fontset);
884 ASET (Vfontset_table, face->fontset, Qnil);
885 if (face->fontset < next_fontset_id)
886 next_fontset_id = face->fontset;
887 if (! NILP (FONTSET_DEFAULT (fontset)))
889 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
891 fontset = AREF (Vfontset_table, id);
892 eassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
893 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
894 free_realized_fontset (f, fontset);
895 ASET (Vfontset_table, id, Qnil);
896 if (id < next_fontset_id)
897 next_fontset_id = face->fontset;
899 face->fontset = -1;
902 /* Return ID of face suitable for displaying character C at buffer position
903 POS on frame F. FACE must be realized for ASCII characters in advance.
904 Called from the macro FACE_FOR_CHAR. */
907 face_for_char (struct frame *f, struct face *face, int c,
908 ptrdiff_t pos, Lisp_Object object)
910 Lisp_Object fontset, rfont_def, charset;
911 int face_id;
912 int id;
914 eassert (fontset_id_valid_p (face->fontset));
916 if (ASCII_CHAR_P (c) || CHAR_BYTE8_P (c))
917 return face->ascii_face->id;
919 #ifdef HAVE_NS
920 if (face->font)
922 /* Fonts often have characters in other scripts, like symbol, even if they
923 don't match script: symbol. So check if the character is present
924 in the current face first. Only enable for NS for now, but should
925 perhaps be general? */
926 Lisp_Object font_object;
927 XSETFONT (font_object, face->font);
928 if (font_has_char (f, font_object, c)) return face->id;
930 #endif
932 fontset = FONTSET_FROM_ID (face->fontset);
933 eassert (!BASE_FONTSET_P (fontset));
935 if (pos < 0)
937 id = -1;
938 charset = Qnil;
940 else
942 charset = Fget_char_property (make_number (pos), Qcharset, object);
943 if (CHARSETP (charset))
945 Lisp_Object val;
947 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
948 if (CONSP (val) && CHARSETP (XCDR (val)))
949 charset = XCDR (val);
950 id = XINT (CHARSET_SYMBOL_ID (charset));
952 else
953 id = -1;
956 rfont_def = fontset_font (fontset, c, face, id);
957 if (VECTORP (rfont_def))
959 if (INTEGERP (RFONT_DEF_FACE (rfont_def)))
960 face_id = XINT (RFONT_DEF_FACE (rfont_def));
961 else
963 Lisp_Object font_object;
965 font_object = RFONT_DEF_OBJECT (rfont_def);
966 face_id = face_for_font (f, font_object, face);
967 RFONT_DEF_SET_FACE (rfont_def, face_id);
970 else
972 if (INTEGERP (FONTSET_NOFONT_FACE (fontset)))
973 face_id = XINT (FONTSET_NOFONT_FACE (fontset));
974 else
976 face_id = face_for_font (f, Qnil, face);
977 set_fontset_nofont_face (fontset, make_number (face_id));
980 eassert (face_id >= 0);
981 return face_id;
985 Lisp_Object
986 font_for_char (struct face *face, int c, ptrdiff_t pos, Lisp_Object object)
988 Lisp_Object fontset, rfont_def, charset;
989 int id;
991 if (ASCII_CHAR_P (c))
993 Lisp_Object font_object;
995 XSETFONT (font_object, face->ascii_face->font);
996 return font_object;
999 eassert (fontset_id_valid_p (face->fontset));
1000 fontset = FONTSET_FROM_ID (face->fontset);
1001 eassert (!BASE_FONTSET_P (fontset));
1002 if (pos < 0)
1004 id = -1;
1005 charset = Qnil;
1007 else
1009 charset = Fget_char_property (make_number (pos), Qcharset, object);
1010 if (CHARSETP (charset))
1012 Lisp_Object val;
1014 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
1015 if (CONSP (val) && CHARSETP (XCDR (val)))
1016 charset = XCDR (val);
1017 id = XINT (CHARSET_SYMBOL_ID (charset));
1019 else
1020 id = -1;
1023 rfont_def = fontset_font (fontset, c, face, id);
1024 return (VECTORP (rfont_def)
1025 ? RFONT_DEF_OBJECT (rfont_def)
1026 : Qnil);
1030 /* Make a realized fontset for ASCII face FACE on frame F from the
1031 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
1032 default fontset as the base. Value is the id of the new fontset.
1033 Called from realize_x_face. */
1036 make_fontset_for_ascii_face (struct frame *f, int base_fontset_id, struct face *face)
1038 Lisp_Object base_fontset, fontset, frame;
1040 XSETFRAME (frame, f);
1041 if (base_fontset_id >= 0)
1043 base_fontset = FONTSET_FROM_ID (base_fontset_id);
1044 if (!BASE_FONTSET_P (base_fontset))
1045 base_fontset = FONTSET_BASE (base_fontset);
1046 eassert (BASE_FONTSET_P (base_fontset));
1048 else
1049 base_fontset = Vdefault_fontset;
1051 fontset = make_fontset (frame, Qnil, base_fontset);
1052 return XINT (FONTSET_ID (fontset));
1057 /* Cache data used by fontset_pattern_regexp. The car part is a
1058 pattern string containing at least one wild card, the cdr part is
1059 the corresponding regular expression. */
1060 static Lisp_Object Vcached_fontset_data;
1062 #define CACHED_FONTSET_NAME SSDATA (XCAR (Vcached_fontset_data))
1063 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
1065 /* If fontset name PATTERN contains any wild card, return regular
1066 expression corresponding to PATTERN. */
1068 static Lisp_Object
1069 fontset_pattern_regexp (Lisp_Object pattern)
1071 if (!strchr (SSDATA (pattern), '*')
1072 && !strchr (SSDATA (pattern), '?'))
1073 /* PATTERN does not contain any wild cards. */
1074 return Qnil;
1076 if (!CONSP (Vcached_fontset_data)
1077 || strcmp (SSDATA (pattern), CACHED_FONTSET_NAME))
1079 /* We must at first update the cached data. */
1080 unsigned char *regex, *p0, *p1;
1081 int ndashes = 0, nstars = 0, nescs = 0;
1083 for (p0 = SDATA (pattern); *p0; p0++)
1085 if (*p0 == '-')
1086 ndashes++;
1087 else if (*p0 == '*')
1088 nstars++;
1089 else if (*p0 == '['
1090 || *p0 == '.' || *p0 == '\\'
1091 || *p0 == '+' || *p0 == '^'
1092 || *p0 == '$')
1093 nescs++;
1096 /* If PATTERN is not full XLFD we convert "*" to ".*". Otherwise
1097 we convert "*" to "[^-]*" which is much faster in regular
1098 expression matching. */
1099 if (ndashes < 14)
1100 p1 = regex = alloca (SBYTES (pattern) + 2 * nstars + 2 * nescs + 1);
1101 else
1102 p1 = regex = alloca (SBYTES (pattern) + 5 * nstars + 2 * nescs + 1);
1104 *p1++ = '^';
1105 for (p0 = SDATA (pattern); *p0; p0++)
1107 if (*p0 == '*')
1109 if (ndashes < 14)
1110 *p1++ = '.';
1111 else
1112 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1113 *p1++ = '*';
1115 else if (*p0 == '?')
1116 *p1++ = '.';
1117 else if (*p0 == '['
1118 || *p0 == '.' || *p0 == '\\'
1119 || *p0 == '+' || *p0 == '^'
1120 || *p0 == '$')
1121 *p1++ = '\\', *p1++ = *p0;
1122 else
1123 *p1++ = *p0;
1125 *p1++ = '$';
1126 *p1++ = 0;
1128 Vcached_fontset_data = Fcons (build_string (SSDATA (pattern)),
1129 build_string ((char *) regex));
1132 return CACHED_FONTSET_REGEX;
1135 /* Return ID of the base fontset named NAME. If there's no such
1136 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1137 0: pattern containing '*' and '?' as wildcards
1138 1: regular expression
1139 2: literal fontset name
1143 fs_query_fontset (Lisp_Object name, int name_pattern)
1145 Lisp_Object tem;
1146 int i;
1148 name = Fdowncase (name);
1149 if (name_pattern != 1)
1151 tem = Frassoc (name, Vfontset_alias_alist);
1152 if (NILP (tem))
1153 tem = Fassoc (name, Vfontset_alias_alist);
1154 if (CONSP (tem) && STRINGP (XCAR (tem)))
1155 name = XCAR (tem);
1156 else if (name_pattern == 0)
1158 tem = fontset_pattern_regexp (name);
1159 if (STRINGP (tem))
1161 name = tem;
1162 name_pattern = 1;
1167 for (i = 0; i < ASIZE (Vfontset_table); i++)
1169 Lisp_Object fontset, this_name;
1171 fontset = FONTSET_FROM_ID (i);
1172 if (NILP (fontset)
1173 || !BASE_FONTSET_P (fontset))
1174 continue;
1176 this_name = FONTSET_NAME (fontset);
1177 if (name_pattern == 1
1178 ? fast_string_match_ignore_case (name, this_name) >= 0
1179 : !xstrcasecmp (SSDATA (name), SSDATA (this_name)))
1180 return i;
1182 return -1;
1186 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1187 doc: /* Return the name of a fontset that matches PATTERN.
1188 The value is nil if there is no matching fontset.
1189 PATTERN can contain `*' or `?' as a wildcard
1190 just as X font name matching algorithm allows.
1191 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1192 (Lisp_Object pattern, Lisp_Object regexpp)
1194 Lisp_Object fontset;
1195 int id;
1197 check_window_system (NULL);
1199 CHECK_STRING (pattern);
1201 if (SCHARS (pattern) == 0)
1202 return Qnil;
1204 id = fs_query_fontset (pattern, !NILP (regexpp));
1205 if (id < 0)
1206 return Qnil;
1208 fontset = FONTSET_FROM_ID (id);
1209 return FONTSET_NAME (fontset);
1212 /* Return a list of base fontset names matching PATTERN on frame F. */
1214 Lisp_Object
1215 list_fontsets (struct frame *f, Lisp_Object pattern, int size)
1217 Lisp_Object frame, regexp, val;
1218 int id;
1220 XSETFRAME (frame, f);
1222 regexp = fontset_pattern_regexp (pattern);
1223 val = Qnil;
1225 for (id = 0; id < ASIZE (Vfontset_table); id++)
1227 Lisp_Object fontset, name;
1229 fontset = FONTSET_FROM_ID (id);
1230 if (NILP (fontset)
1231 || !BASE_FONTSET_P (fontset)
1232 || !EQ (frame, FONTSET_FRAME (fontset)))
1233 continue;
1234 name = FONTSET_NAME (fontset);
1236 if (STRINGP (regexp)
1237 ? (fast_string_match (regexp, name) < 0)
1238 : strcmp (SSDATA (pattern), SSDATA (name)))
1239 continue;
1241 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1244 return val;
1248 /* Free all realized fontsets whose base fontset is BASE. */
1250 static void
1251 free_realized_fontsets (Lisp_Object base)
1253 int id;
1255 #if 0
1256 /* For the moment, this doesn't work because free_realized_face
1257 doesn't remove FACE from a cache. Until we find a solution, we
1258 suppress this code, and simply use Fclear_face_cache even though
1259 that is not efficient. */
1260 block_input ();
1261 for (id = 0; id < ASIZE (Vfontset_table); id++)
1263 Lisp_Object this = AREF (Vfontset_table, id);
1265 if (EQ (FONTSET_BASE (this), base))
1267 Lisp_Object tail;
1269 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1270 tail = XCDR (tail))
1272 struct frame *f = XFRAME (FONTSET_FRAME (this));
1273 int face_id = XINT (XCDR (XCAR (tail)));
1274 struct face *face = FACE_FROM_ID (f, face_id);
1276 /* Face THIS itself is also freed by the following call. */
1277 free_realized_face (f, face);
1281 unblock_input ();
1282 #else /* not 0 */
1283 /* But, we don't have to call Fclear_face_cache if no fontset has
1284 been realized from BASE. */
1285 for (id = 0; id < ASIZE (Vfontset_table); id++)
1287 Lisp_Object this = AREF (Vfontset_table, id);
1289 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base))
1291 Fclear_face_cache (Qt);
1292 break;
1295 #endif /* not 0 */
1299 /* Check validity of NAME as a fontset name and return the
1300 corresponding fontset. If not valid, signal an error.
1302 If NAME is t, return Vdefault_fontset. If NAME is nil, return the
1303 fontset of *FRAME.
1305 Set *FRAME to the actual frame. */
1307 static Lisp_Object
1308 check_fontset_name (Lisp_Object name, Lisp_Object *frame)
1310 int id;
1311 struct frame *f = decode_live_frame (*frame);
1313 XSETFRAME (*frame, f);
1315 if (EQ (name, Qt))
1316 return Vdefault_fontset;
1317 if (NILP (name))
1318 id = FRAME_FONTSET (f);
1319 else
1321 CHECK_STRING (name);
1322 /* First try NAME as literal. */
1323 id = fs_query_fontset (name, 2);
1324 if (id < 0)
1325 /* For backward compatibility, try again NAME as pattern. */
1326 id = fs_query_fontset (name, 0);
1327 if (id < 0)
1328 error ("Fontset `%s' does not exist", SDATA (name));
1330 return FONTSET_FROM_ID (id);
1333 static void
1334 accumulate_script_ranges (Lisp_Object arg, Lisp_Object range, Lisp_Object val)
1336 if (EQ (XCAR (arg), val))
1338 if (CONSP (range))
1339 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1340 else
1341 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1346 /* Callback function for map_charset_chars in Fset_fontset_font.
1347 ARG is a vector [ FONTSET FONT_DEF ADD ASCII SCRIPT_RANGE_LIST ].
1349 In FONTSET, set FONT_DEF in a fashion specified by ADD for
1350 characters in RANGE and ranges in SCRIPT_RANGE_LIST before RANGE.
1351 The consumed ranges are popped up from SCRIPT_RANGE_LIST, and the
1352 new SCRIPT_RANGE_LIST is stored in ARG.
1354 If ASCII is nil, don't set FONT_DEF for ASCII characters. It is
1355 assured that SCRIPT_RANGE_LIST doesn't contain ASCII in that
1356 case. */
1358 static void
1359 set_fontset_font (Lisp_Object arg, Lisp_Object range)
1361 Lisp_Object fontset, font_def, add, ascii, script_range_list;
1362 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1364 fontset = AREF (arg, 0);
1365 font_def = AREF (arg, 1);
1366 add = AREF (arg, 2);
1367 ascii = AREF (arg, 3);
1368 script_range_list = AREF (arg, 4);
1370 if (NILP (ascii) && from < 0x80)
1372 if (to < 0x80)
1373 return;
1374 from = 0x80;
1375 range = Fcons (make_number (0x80), XCDR (range));
1378 #define SCRIPT_FROM XINT (XCAR (XCAR (script_range_list)))
1379 #define SCRIPT_TO XINT (XCDR (XCAR (script_range_list)))
1380 #define POP_SCRIPT_RANGE() script_range_list = XCDR (script_range_list)
1382 for (; CONSP (script_range_list) && SCRIPT_TO < from; POP_SCRIPT_RANGE ())
1383 FONTSET_ADD (fontset, XCAR (script_range_list), font_def, add);
1384 if (CONSP (script_range_list))
1386 if (SCRIPT_FROM < from)
1387 range = Fcons (make_number (SCRIPT_FROM), XCDR (range));
1388 while (CONSP (script_range_list) && SCRIPT_TO <= to)
1389 POP_SCRIPT_RANGE ();
1390 if (CONSP (script_range_list) && SCRIPT_FROM <= to)
1391 XSETCAR (XCAR (script_range_list), make_number (to + 1));
1394 FONTSET_ADD (fontset, range, font_def, add);
1395 ASET (arg, 4, script_range_list);
1398 static void update_auto_fontset_alist (Lisp_Object, Lisp_Object);
1401 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1402 doc: /*
1403 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1405 NAME is a fontset name string, nil for the fontset of FRAME, or t for
1406 the default fontset.
1408 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1409 In that case, use FONT-SPEC for all characters in the range FROM and
1410 TO (inclusive).
1412 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1413 all characters that belong to the script.
1415 TARGET may be a charset. In that case, use FONT-SPEC for all
1416 characters in the charset.
1418 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1419 that no FONT-SPEC is specified.
1421 FONT-SPEC may one of these:
1422 * A font-spec object made by the function `font-spec' (which see).
1423 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1424 REGISTRY is a font registry name. FAMILY may contain foundry
1425 name, and REGISTRY may contain encoding name.
1426 * A font name string.
1427 * nil, which explicitly specifies that there's no font for TARGET.
1429 Optional 4th argument FRAME is a frame or nil for the selected frame
1430 that is concerned in the case that NAME is nil.
1432 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1433 to the font specifications for TARGET previously set. If it is
1434 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1435 appended. By default, FONT-SPEC overrides the previous settings. */)
1436 (Lisp_Object name, Lisp_Object target, Lisp_Object font_spec, Lisp_Object frame, Lisp_Object add)
1438 Lisp_Object fontset;
1439 Lisp_Object font_def, registry, family;
1440 Lisp_Object range_list;
1441 struct charset *charset = NULL;
1442 Lisp_Object fontname;
1443 bool ascii_changed = 0;
1445 fontset = check_fontset_name (name, &frame);
1447 fontname = Qnil;
1448 if (CONSP (font_spec))
1450 Lisp_Object spec = Ffont_spec (0, NULL);
1452 font_parse_family_registry (XCAR (font_spec), XCDR (font_spec), spec);
1453 font_spec = spec;
1454 fontname = Ffont_xlfd_name (font_spec, Qnil);
1456 else if (STRINGP (font_spec))
1458 Lisp_Object args[2];
1460 fontname = font_spec;
1461 args[0] = QCname;
1462 args[1] = font_spec;
1463 font_spec = Ffont_spec (2, args);
1465 else if (FONT_SPEC_P (font_spec))
1466 fontname = Ffont_xlfd_name (font_spec, Qnil);
1467 else if (! NILP (font_spec))
1468 Fsignal (Qfont, list2 (build_string ("Invalid font-spec"), font_spec));
1470 if (! NILP (font_spec))
1472 Lisp_Object encoding, repertory;
1474 family = AREF (font_spec, FONT_FAMILY_INDEX);
1475 if (! NILP (family) )
1476 family = SYMBOL_NAME (family);
1477 registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1478 if (! NILP (registry))
1479 registry = Fdowncase (SYMBOL_NAME (registry));
1480 encoding = find_font_encoding (concat3 (family, build_string ("-"),
1481 registry));
1482 if (NILP (encoding))
1483 encoding = Qascii;
1485 if (SYMBOLP (encoding))
1487 CHECK_CHARSET (encoding);
1488 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1490 else
1492 repertory = XCDR (encoding);
1493 encoding = XCAR (encoding);
1494 CHECK_CHARSET (encoding);
1495 encoding = CHARSET_SYMBOL_ID (encoding);
1496 if (! NILP (repertory) && SYMBOLP (repertory))
1498 CHECK_CHARSET (repertory);
1499 repertory = CHARSET_SYMBOL_ID (repertory);
1502 FONT_DEF_NEW (font_def, font_spec, encoding, repertory);
1504 else
1505 font_def = Qnil;
1507 if (CHARACTERP (target))
1509 if (XFASTINT (target) < 0x80)
1510 error ("Can't set a font for partial ASCII range");
1511 range_list = list1 (Fcons (target, target));
1513 else if (CONSP (target))
1515 Lisp_Object from, to;
1517 from = Fcar (target);
1518 to = Fcdr (target);
1519 CHECK_CHARACTER (from);
1520 CHECK_CHARACTER (to);
1521 if (XFASTINT (from) < 0x80)
1523 if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F)
1524 error ("Can't set a font for partial ASCII range");
1525 ascii_changed = 1;
1527 range_list = list1 (target);
1529 else if (SYMBOLP (target) && !NILP (target))
1531 Lisp_Object script_list;
1532 Lisp_Object val;
1534 range_list = Qnil;
1535 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1536 if (! NILP (Fmemq (target, script_list)))
1538 if (EQ (target, Qlatin))
1539 ascii_changed = 1;
1540 val = list1 (target);
1541 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1542 val);
1543 range_list = Fnreverse (XCDR (val));
1545 if (CHARSETP (target))
1547 CHECK_CHARSET_GET_CHARSET (target, charset);
1548 if (charset->ascii_compatible_p)
1549 ascii_changed = 1;
1551 else if (NILP (range_list))
1552 error ("Invalid script or charset name: %s",
1553 SDATA (SYMBOL_NAME (target)));
1555 else if (NILP (target))
1556 range_list = list1 (Qnil);
1557 else
1558 error ("Invalid target for setting a font");
1560 if (ascii_changed)
1562 Lisp_Object val;
1564 if (NILP (font_spec))
1565 error ("Can't set ASCII font to nil");
1566 val = CHAR_TABLE_REF (fontset, 0);
1567 if (! NILP (val) && EQ (add, Qappend))
1568 /* We are going to change just an additional font for ASCII. */
1569 ascii_changed = 0;
1572 if (charset)
1574 Lisp_Object arg;
1576 arg = make_uninit_vector (5);
1577 ASET (arg, 0, fontset);
1578 ASET (arg, 1, font_def);
1579 ASET (arg, 2, add);
1580 ASET (arg, 3, ascii_changed ? Qt : Qnil);
1581 ASET (arg, 4, range_list);
1583 map_charset_chars (set_fontset_font, Qnil, arg, charset,
1584 CHARSET_MIN_CODE (charset),
1585 CHARSET_MAX_CODE (charset));
1586 range_list = AREF (arg, 4);
1588 for (; CONSP (range_list); range_list = XCDR (range_list))
1589 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1591 if (ascii_changed)
1593 Lisp_Object tail, fr, alist;
1594 int fontset_id = XINT (FONTSET_ID (fontset));
1596 set_fontset_ascii (fontset, fontname);
1597 name = FONTSET_NAME (fontset);
1598 FOR_EACH_FRAME (tail, fr)
1600 struct frame *f = XFRAME (fr);
1601 Lisp_Object font_object;
1602 struct face *face;
1604 if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f))
1605 continue;
1606 if (fontset_id != FRAME_FONTSET (f))
1607 continue;
1608 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
1609 if (face)
1610 font_object = font_load_for_lface (f, face->lface, font_spec);
1611 else
1612 font_object = font_open_by_spec (f, font_spec);
1613 if (! NILP (font_object))
1615 update_auto_fontset_alist (font_object, fontset);
1616 alist = list1 (Fcons (Qfont, Fcons (name, font_object)));
1617 Fmodify_frame_parameters (fr, alist);
1622 /* Free all realized fontsets whose base is FONTSET. This way, the
1623 specified character(s) are surely redisplayed by a correct
1624 font. */
1625 free_realized_fontsets (fontset);
1627 return Qnil;
1631 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1632 doc: /* Create a new fontset NAME from font information in FONTLIST.
1634 FONTLIST is an alist of scripts vs the corresponding font specification list.
1635 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1636 character of SCRIPT is displayed by a font that matches one of
1637 FONT-SPEC.
1639 SCRIPT is a symbol that appears in the first extra slot of the
1640 char-table `char-script-table'.
1642 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1643 `set-fontset-font' for the meaning. */)
1644 (Lisp_Object name, Lisp_Object fontlist)
1646 Lisp_Object fontset;
1647 int id;
1649 CHECK_STRING (name);
1650 CHECK_LIST (fontlist);
1652 name = Fdowncase (name);
1653 id = fs_query_fontset (name, 0);
1654 if (id < 0)
1656 Lisp_Object font_spec = Ffont_spec (0, NULL);
1657 Lisp_Object short_name;
1658 char xlfd[256];
1659 int len;
1661 if (font_parse_xlfd (SSDATA (name), SBYTES (name), font_spec) < 0)
1662 error ("Fontset name must be in XLFD format");
1663 short_name = AREF (font_spec, FONT_REGISTRY_INDEX);
1664 if (strncmp (SSDATA (SYMBOL_NAME (short_name)), "fontset-", 8)
1665 || SBYTES (SYMBOL_NAME (short_name)) < 9)
1666 error ("Registry field of fontset name must be \"fontset-*\"");
1667 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (short_name)),
1668 Vfontset_alias_alist);
1669 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso8859_1);
1670 fontset = make_fontset (Qnil, name, Qnil);
1671 len = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1672 if (len < 0)
1673 error ("Invalid fontset name (perhaps too long): %s", SDATA (name));
1674 set_fontset_ascii (fontset, make_unibyte_string (xlfd, len));
1676 else
1678 fontset = FONTSET_FROM_ID (id);
1679 free_realized_fontsets (fontset);
1680 Fset_char_table_range (fontset, Qt, Qnil);
1683 for (; CONSP (fontlist); fontlist = XCDR (fontlist))
1685 Lisp_Object elt, script;
1687 elt = XCAR (fontlist);
1688 script = Fcar (elt);
1689 elt = Fcdr (elt);
1690 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1691 for (; CONSP (elt); elt = XCDR (elt))
1692 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1693 else
1694 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1696 return name;
1700 /* Alist of automatically created fontsets. Each element is a cons
1701 (FONT-SPEC . FONTSET-ID). */
1702 static Lisp_Object auto_fontset_alist;
1704 /* Number of automatically created fontsets. */
1705 static ptrdiff_t num_auto_fontsets;
1707 /* Return a fontset synthesized from FONT-OBJECT. This is called from
1708 x_new_font when FONT-OBJECT is used for the default ASCII font of a
1709 frame, and the returned fontset is used for the default fontset of
1710 that frame. The fontset specifies a font of the same registry as
1711 FONT-OBJECT for all characters in the repertory of the registry
1712 (see Vfont_encoding_alist). If the repertory is not known, the
1713 fontset specifies the font for all Latin characters assuming that a
1714 user intends to use FONT-OBJECT for Latin characters. */
1717 fontset_from_font (Lisp_Object font_object)
1719 Lisp_Object font_name = font_get_name (font_object);
1720 Lisp_Object font_spec = copy_font_spec (font_object);
1721 Lisp_Object registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1722 Lisp_Object fontset_spec, alias, name, fontset;
1723 Lisp_Object val;
1725 val = assoc_no_quit (font_spec, auto_fontset_alist);
1726 if (CONSP (val))
1727 return XINT (FONTSET_ID (XCDR (val)));
1728 if (num_auto_fontsets++ == 0)
1729 alias = intern ("fontset-startup");
1730 else
1732 char temp[sizeof "fontset-auto" + INT_STRLEN_BOUND (ptrdiff_t)];
1734 sprintf (temp, "fontset-auto%"pD"d", num_auto_fontsets - 1);
1735 alias = intern (temp);
1737 fontset_spec = copy_font_spec (font_spec);
1738 ASET (fontset_spec, FONT_REGISTRY_INDEX, alias);
1739 name = Ffont_xlfd_name (fontset_spec, Qnil);
1740 eassert (!NILP (name));
1741 fontset = make_fontset (Qnil, name, Qnil);
1742 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (alias)),
1743 Vfontset_alias_alist);
1744 alias = Fdowncase (AREF (font_object, FONT_NAME_INDEX));
1745 Vfontset_alias_alist = Fcons (Fcons (name, alias), Vfontset_alias_alist);
1746 auto_fontset_alist = Fcons (Fcons (font_spec, fontset), auto_fontset_alist);
1747 font_spec = Ffont_spec (0, NULL);
1748 ASET (font_spec, FONT_REGISTRY_INDEX, registry);
1750 Lisp_Object target = find_font_encoding (SYMBOL_NAME (registry));
1752 if (CONSP (target))
1753 target = XCDR (target);
1754 if (! CHARSETP (target))
1755 target = Qlatin;
1756 Fset_fontset_font (name, target, font_spec, Qnil, Qnil);
1757 Fset_fontset_font (name, Qnil, font_spec, Qnil, Qnil);
1760 set_fontset_ascii (fontset, font_name);
1762 return XINT (FONTSET_ID (fontset));
1766 /* Update auto_fontset_alist for FONTSET. When an ASCII font of
1767 FONTSET is changed, we delete an entry of FONTSET if any from
1768 auto_fontset_alist so that FONTSET is not re-used by
1769 fontset_from_font. */
1771 static void
1772 update_auto_fontset_alist (Lisp_Object font_object, Lisp_Object fontset)
1774 Lisp_Object prev, tail;
1776 for (prev = Qnil, tail = auto_fontset_alist; CONSP (tail);
1777 prev = tail, tail = XCDR (tail))
1778 if (EQ (fontset, XCDR (XCAR (tail))))
1780 if (NILP (prev))
1781 auto_fontset_alist = XCDR (tail);
1782 else
1783 XSETCDR (prev, XCDR (tail));
1784 break;
1789 /* Return a cons (FONT-OBJECT . GLYPH-CODE).
1790 FONT-OBJECT is the font for the character at POSITION in the current
1791 buffer. This is computed from all the text properties and overlays
1792 that apply to POSITION. POSITION may be nil, in which case,
1793 FONT-SPEC is the font for displaying the character CH with the
1794 default face.
1796 GLYPH-CODE is the glyph code in the font to use for the character.
1798 If the 2nd optional arg CH is non-nil, it is a character to check
1799 the font instead of the character at POSITION.
1801 It returns nil in the following cases:
1803 (1) The window system doesn't have a font for the character (thus
1804 it is displayed by an empty box).
1806 (2) The character code is invalid.
1808 (3) If POSITION is not nil, and the current buffer is not displayed
1809 in any window.
1811 In addition, the returned font name may not take into account of
1812 such redisplay engine hooks as what used in jit-lock-mode if
1813 POSITION is currently not visible. */
1816 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1817 doc: /* For internal use only. */)
1818 (Lisp_Object position, Lisp_Object ch)
1820 ptrdiff_t pos, pos_byte, dummy;
1821 int face_id;
1822 int c;
1823 struct frame *f;
1824 struct face *face;
1826 if (NILP (position))
1828 CHECK_CHARACTER (ch);
1829 c = XINT (ch);
1830 f = XFRAME (selected_frame);
1831 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
1832 pos = -1;
1834 else
1836 Lisp_Object window;
1837 struct window *w;
1839 CHECK_NUMBER_COERCE_MARKER (position);
1840 if (! (BEGV <= XINT (position) && XINT (position) < ZV))
1841 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1842 pos = XINT (position);
1843 pos_byte = CHAR_TO_BYTE (pos);
1844 if (NILP (ch))
1845 c = FETCH_CHAR (pos_byte);
1846 else
1848 CHECK_NATNUM (ch);
1849 c = XINT (ch);
1851 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1852 if (NILP (window))
1853 return Qnil;
1854 w = XWINDOW (window);
1855 f = XFRAME (w->frame);
1856 face_id = face_at_buffer_position (w, pos, &dummy,
1857 pos + 100, 0, -1);
1859 if (! CHAR_VALID_P (c))
1860 return Qnil;
1861 if (!FRAME_WINDOW_P (f))
1862 return Qnil;
1863 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1864 face = FACE_FROM_ID (f, face_id);
1865 if (face->font)
1867 unsigned code = face->font->driver->encode_char (face->font, c);
1868 Lisp_Object font_object;
1870 if (code == FONT_INVALID_CODE)
1871 return Qnil;
1872 XSETFONT (font_object, face->font);
1873 return Fcons (font_object, INTEGER_TO_CONS (code));
1875 return Qnil;
1879 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1880 doc: /* Return information about a fontset FONTSET on frame FRAME.
1882 FONTSET is a fontset name string, nil for the fontset of FRAME, or t
1883 for the default fontset. FRAME nil means the selected frame.
1885 The value is a char-table whose elements have this form:
1887 ((FONT OPENED-FONT ...) ...)
1889 FONT is a name of font specified for a range of characters.
1891 OPENED-FONT is a name of a font actually opened.
1893 The char-table has one extra slot. If FONTSET is not the default
1894 fontset, the value the extra slot is a char-table containing the
1895 information about the derived fonts from the default fontset. The
1896 format is the same as above. */)
1897 (Lisp_Object fontset, Lisp_Object frame)
1899 Lisp_Object *realized[2], fontsets[2], tables[2];
1900 Lisp_Object val, elt;
1901 int c, i, j, k;
1903 check_window_system (NULL);
1904 fontset = check_fontset_name (fontset, &frame);
1906 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1907 in the table `realized'. */
1908 realized[0] = alloca (word_size * ASIZE (Vfontset_table));
1909 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1911 elt = FONTSET_FROM_ID (i);
1912 if (!NILP (elt)
1913 && EQ (FONTSET_BASE (elt), fontset)
1914 && EQ (FONTSET_FRAME (elt), frame))
1915 realized[0][j++] = elt;
1917 realized[0][j] = Qnil;
1919 realized[1] = alloca (word_size * ASIZE (Vfontset_table));
1920 for (i = j = 0; ! NILP (realized[0][i]); i++)
1922 elt = FONTSET_DEFAULT (realized[0][i]);
1923 if (! NILP (elt))
1924 realized[1][j++] = elt;
1926 realized[1][j] = Qnil;
1928 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1929 fontsets[0] = fontset;
1930 if (!EQ (fontset, Vdefault_fontset))
1932 tables[1] = Fmake_char_table (Qnil, Qnil);
1933 set_char_table_extras (tables[0], 0, tables[1]);
1934 fontsets[1] = Vdefault_fontset;
1937 /* Accumulate information of the fontset in TABLE. The format of
1938 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1939 for (k = 0; k <= 1; k++)
1941 for (c = 0; c <= MAX_CHAR; )
1943 int from = c, to = MAX_5_BYTE_CHAR;
1945 if (c <= MAX_5_BYTE_CHAR)
1947 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1949 else
1951 val = FONTSET_FALLBACK (fontsets[k]);
1952 to = MAX_CHAR;
1954 if (VECTORP (val))
1956 Lisp_Object alist;
1958 /* At first, set ALIST to ((FONT-SPEC) ...). */
1959 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1960 if (! NILP (AREF (val, i)))
1961 alist = Fcons (Fcons (FONT_DEF_SPEC (AREF (val, i)), Qnil),
1962 alist);
1963 alist = Fnreverse (alist);
1965 /* Then store opened font names to cdr of each elements. */
1966 for (i = 0; ! NILP (realized[k][i]); i++)
1968 if (c <= MAX_5_BYTE_CHAR)
1969 val = FONTSET_REF (realized[k][i], c);
1970 else
1971 val = FONTSET_FALLBACK (realized[k][i]);
1972 if (! CONSP (val) || ! VECTORP (XCDR (val)))
1973 continue;
1974 /* VAL: (int . [[FACE-ID FONT-DEF FONT-OBJECT int] ... ]) */
1975 val = XCDR (val);
1976 for (j = 0; j < ASIZE (val); j++)
1978 elt = AREF (val, j);
1979 if (FONT_OBJECT_P (RFONT_DEF_OBJECT (elt)))
1981 Lisp_Object font_object = RFONT_DEF_OBJECT (elt);
1982 Lisp_Object slot, name;
1984 slot = Fassq (RFONT_DEF_SPEC (elt), alist);
1985 name = AREF (font_object, FONT_NAME_INDEX);
1986 if (NILP (Fmember (name, XCDR (slot))))
1987 nconc2 (slot, list1 (name));
1992 /* Store ALIST in TBL for characters C..TO. */
1993 if (c <= MAX_5_BYTE_CHAR)
1994 char_table_set_range (tables[k], c, to, alist);
1995 else
1996 set_char_table_defalt (tables[k], alist);
1998 /* At last, change each elements to font names. */
1999 for (; CONSP (alist); alist = XCDR (alist))
2001 elt = XCAR (alist);
2002 XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil));
2005 c = to + 1;
2007 if (EQ (fontset, Vdefault_fontset))
2008 break;
2011 return tables[0];
2015 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
2016 doc: /* Return a font name pattern for character CH in fontset NAME.
2017 If NAME is t, find a pattern in the default fontset.
2018 If NAME is nil, find a pattern in the fontset of the selected frame.
2020 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
2021 family name and REGISTRY is a font registry name. This is actually
2022 the first font name pattern for CH in the fontset or in the default
2023 fontset.
2025 If the 2nd optional arg ALL is non-nil, return a list of all font name
2026 patterns. */)
2027 (Lisp_Object name, Lisp_Object ch, Lisp_Object all)
2029 int c;
2030 Lisp_Object fontset, elt, list, repertory, val;
2031 int i, j;
2032 Lisp_Object frame;
2034 frame = Qnil;
2035 fontset = check_fontset_name (name, &frame);
2037 CHECK_CHARACTER (ch);
2038 c = XINT (ch);
2039 list = Qnil;
2040 while (1)
2042 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
2043 i++, elt = FONTSET_FALLBACK (fontset))
2044 if (VECTORP (elt))
2045 for (j = 0; j < ASIZE (elt); j++)
2047 Lisp_Object family, registry;
2049 val = AREF (elt, j);
2050 if (NILP (val))
2051 return Qnil;
2052 repertory = AREF (val, 1);
2053 if (INTEGERP (repertory))
2055 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
2057 if (! CHAR_CHARSET_P (c, charset))
2058 continue;
2060 else if (CHAR_TABLE_P (repertory))
2062 if (NILP (CHAR_TABLE_REF (repertory, c)))
2063 continue;
2065 val = AREF (val, 0);
2066 /* VAL is a FONT-SPEC */
2067 family = AREF (val, FONT_FAMILY_INDEX);
2068 if (! NILP (family))
2069 family = SYMBOL_NAME (family);
2070 registry = AREF (val, FONT_REGISTRY_INDEX);
2071 if (! NILP (registry))
2072 registry = SYMBOL_NAME (registry);
2073 val = Fcons (family, registry);
2074 if (NILP (all))
2075 return val;
2076 list = Fcons (val, list);
2078 if (EQ (fontset, Vdefault_fontset))
2079 break;
2080 fontset = Vdefault_fontset;
2082 return (Fnreverse (list));
2085 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
2086 doc: /* Return a list of all defined fontset names. */)
2087 (void)
2089 Lisp_Object fontset, list;
2090 int i;
2092 list = Qnil;
2093 for (i = 0; i < ASIZE (Vfontset_table); i++)
2095 fontset = FONTSET_FROM_ID (i);
2096 if (!NILP (fontset)
2097 && BASE_FONTSET_P (fontset))
2098 list = Fcons (FONTSET_NAME (fontset), list);
2101 return list;
2105 #ifdef ENABLE_CHECKING
2107 Lisp_Object dump_fontset (Lisp_Object) EXTERNALLY_VISIBLE;
2109 Lisp_Object
2110 dump_fontset (Lisp_Object fontset)
2112 Lisp_Object vec;
2114 vec = Fmake_vector (make_number (3), Qnil);
2115 ASET (vec, 0, FONTSET_ID (fontset));
2117 if (BASE_FONTSET_P (fontset))
2119 ASET (vec, 1, FONTSET_NAME (fontset));
2121 else
2123 Lisp_Object frame;
2125 frame = FONTSET_FRAME (fontset);
2126 if (FRAMEP (frame))
2128 struct frame *f = XFRAME (frame);
2130 if (FRAME_LIVE_P (f))
2131 ASET (vec, 1,
2132 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)),
2133 f->name));
2134 else
2135 ASET (vec, 1,
2136 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), Qnil));
2138 if (!NILP (FONTSET_DEFAULT (fontset)))
2139 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
2141 return vec;
2144 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
2145 doc: /* Return a brief summary of all fontsets for debug use. */)
2146 (void)
2148 Lisp_Object val;
2149 int i;
2151 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
2152 if (! NILP (AREF (Vfontset_table, i)))
2153 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
2154 return (Fnreverse (val));
2156 #endif /* ENABLE_CHECKING */
2158 void
2159 syms_of_fontset (void)
2161 DEFSYM (Qfontset, "fontset");
2162 Fput (Qfontset, Qchar_table_extra_slots, make_number (9));
2163 DEFSYM (Qfontset_info, "fontset-info");
2164 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2166 DEFSYM (Qprepend, "prepend");
2167 DEFSYM (Qappend, "append");
2168 DEFSYM (Qlatin, "latin");
2170 Vcached_fontset_data = Qnil;
2171 staticpro (&Vcached_fontset_data);
2173 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2174 staticpro (&Vfontset_table);
2176 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2177 staticpro (&Vdefault_fontset);
2178 set_fontset_id (Vdefault_fontset, make_number (0));
2179 set_fontset_name
2180 (Vdefault_fontset,
2181 build_pure_c_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default"));
2182 ASET (Vfontset_table, 0, Vdefault_fontset);
2183 next_fontset_id = 1;
2185 auto_fontset_alist = Qnil;
2186 staticpro (&auto_fontset_alist);
2188 DEFVAR_LISP ("font-encoding-charset-alist", Vfont_encoding_charset_alist,
2189 doc: /*
2190 Alist of charsets vs the charsets to determine the preferred font encoding.
2191 Each element looks like (CHARSET . ENCODING-CHARSET),
2192 where ENCODING-CHARSET is a charset registered in the variable
2193 `font-encoding-alist' as ENCODING.
2195 When a text has a property `charset' and the value is CHARSET, a font
2196 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2197 Vfont_encoding_charset_alist = Qnil;
2199 DEFVAR_LISP ("use-default-ascent", Vuse_default_ascent,
2200 doc: /*
2201 Char table of characters whose ascent values should be ignored.
2202 If an entry for a character is non-nil, the ascent value of the glyph
2203 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2205 This affects how a composite character which contains
2206 such a character is displayed on screen. */);
2207 Vuse_default_ascent = Qnil;
2209 DEFVAR_LISP ("ignore-relative-composition", Vignore_relative_composition,
2210 doc: /*
2211 Char table of characters which are not composed relatively.
2212 If an entry for a character is non-nil, a composition sequence
2213 which contains that character is displayed so that
2214 the glyph of that character is put without considering
2215 an ascent and descent value of a previous character. */);
2216 Vignore_relative_composition = Qnil;
2218 DEFVAR_LISP ("alternate-fontname-alist", Valternate_fontname_alist,
2219 doc: /* Alist of fontname vs list of the alternate fontnames.
2220 When a specified font name is not found, the corresponding
2221 alternate fontnames (if any) are tried instead. */);
2222 Valternate_fontname_alist = Qnil;
2224 DEFVAR_LISP ("fontset-alias-alist", Vfontset_alias_alist,
2225 doc: /* Alist of fontset names vs the aliases. */);
2226 Vfontset_alias_alist
2227 = list1 (Fcons (FONTSET_NAME (Vdefault_fontset),
2228 build_pure_c_string ("fontset-default")));
2230 DEFVAR_LISP ("vertical-centering-font-regexp",
2231 Vvertical_centering_font_regexp,
2232 doc: /* Regexp matching font names that require vertical centering on display.
2233 When a character is displayed with such fonts, the character is displayed
2234 at the vertical center of lines. */);
2235 Vvertical_centering_font_regexp = Qnil;
2237 DEFVAR_LISP ("otf-script-alist", Votf_script_alist,
2238 doc: /* Alist of OpenType script tags vs the corresponding script names. */);
2239 Votf_script_alist = Qnil;
2241 defsubr (&Squery_fontset);
2242 defsubr (&Snew_fontset);
2243 defsubr (&Sset_fontset_font);
2244 defsubr (&Sinternal_char_font);
2245 defsubr (&Sfontset_info);
2246 defsubr (&Sfontset_font);
2247 defsubr (&Sfontset_list);
2248 #ifdef ENABLE_CHECKING
2249 defsubr (&Sfontset_list_all);
2250 #endif