Cleanup intervals.
[emacs.git] / src / fontset.c
blobd4ce8b08ea307f453779e8fdcaf509014daf86d1
1 /* Fontset handler.
3 Copyright (C) 2001-2012 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>
29 #include <setjmp.h>
31 #include "lisp.h"
32 #include "blockinput.h"
33 #include "character.h"
34 #include "buffer.h"
35 #include "charset.h"
36 #include "ccl.h"
37 #include "keyboard.h"
38 #include "frame.h"
39 #include "dispextern.h"
40 #include "intervals.h"
41 #include "fontset.h"
42 #include "window.h"
43 #ifdef HAVE_X_WINDOWS
44 #include "xterm.h"
45 #endif
46 #ifdef WINDOWSNT
47 #include "w32term.h"
48 #endif
49 #ifdef HAVE_NS
50 #include "nsterm.h"
51 #endif
52 #include "termhooks.h"
54 #include "font.h"
56 /* FONTSET
58 A fontset is a collection of font related information to give
59 similar appearance (style, etc) of characters. A fontset has two
60 roles. One is to use for the frame parameter `font' as if it is an
61 ASCII font. In that case, Emacs uses the font specified for
62 `ascii' script for the frame's default font.
64 Another role, the more important one, is to provide information
65 about which font to use for each non-ASCII character.
67 There are two kinds of fontsets; base and realized. A base fontset
68 is created by `new-fontset' from Emacs Lisp explicitly. A realized
69 fontset is created implicitly when a face is realized for ASCII
70 characters. A face is also realized for non-ASCII characters based
71 on an ASCII face. All of non-ASCII faces based on the same ASCII
72 face share the same realized fontset.
74 A fontset object is implemented by a char-table whose default value
75 and parent are always nil.
77 An element of a base fontset is a vector of FONT-DEFs which itself
78 is a vector [ FONT-SPEC ENCODING REPERTORY ].
80 An element of a realized fontset is nil, t, 0, or a vector of this
81 form:
83 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
84 RFONT-DEF0 RFONT-DEF1 ... ]
86 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
88 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
90 RFONT-DEFn are automatically reordered by the current charset
91 priority list.
93 The value nil means that we have not yet generated the above vector
94 from the base of the fontset.
96 The value t means that no font is available for the corresponding
97 range of characters.
99 The value 0 means that no font is available for the corresponding
100 range of characters in this fontset, but may be available in the
101 default fontset.
104 A fontset has 9 extra slots.
106 The 1st slot: the ID number of the fontset
108 The 2nd slot:
109 base: the name of the fontset
110 realized: nil
112 The 3rd slot:
113 base: nil
114 realized: the base fontset
116 The 4th slot:
117 base: nil
118 realized: the frame that the fontset belongs to
120 The 5th slot:
121 base: the font name for ASCII characters
122 realized: nil
124 The 6th slot:
125 base: nil
126 realized: the ID number of a face to use for characters that
127 has no font in a realized fontset.
129 The 7th slot:
130 base: nil
131 realized: Alist of font index vs the corresponding repertory
132 char-table.
134 The 8th slot:
135 base: nil
136 realized: If the base is not the default fontset, a fontset
137 realized from the default fontset, else nil.
139 The 9th slot:
140 base: Same as element value (but for fallback fonts).
141 realized: Likewise.
143 All fontsets are recorded in the vector Vfontset_table.
146 DEFAULT FONTSET
148 There's a special base fontset named `default fontset' which
149 defines the default font specifications. When a base fontset
150 doesn't specify a font for a specific character, the corresponding
151 value in the default fontset is used.
153 The parent of a realized fontset created for such a face that has
154 no fontset is the default fontset.
157 These structures are hidden from the other codes than this file.
158 The other codes handle fontsets only by their ID numbers. They
159 usually use the variable name `fontset' for IDs. But, in this
160 file, we always use variable name `id' for IDs, and name `fontset'
161 for an actual fontset object, i.e., char-table.
165 /********** VARIABLES and FUNCTION PROTOTYPES **********/
167 static Lisp_Object Qfontset;
168 static Lisp_Object Qfontset_info;
169 static Lisp_Object Qprepend, Qappend;
170 Lisp_Object Qlatin;
172 /* Vector containing all fontsets. */
173 static Lisp_Object Vfontset_table;
175 /* Next possibly free fontset ID. Usually this keeps the minimum
176 fontset ID not yet used. */
177 static int next_fontset_id;
179 /* The default fontset. This gives default FAMILY and REGISTRY of
180 font for each character. */
181 static Lisp_Object Vdefault_fontset;
183 /* Check if any window system is used now. */
184 void (*check_window_system_func) (void);
187 /* Prototype declarations for static functions. */
188 static Lisp_Object fontset_add (Lisp_Object, Lisp_Object, Lisp_Object,
189 Lisp_Object);
190 static Lisp_Object fontset_find_font (Lisp_Object, int, struct face *,
191 int, int);
192 static void reorder_font_vector (Lisp_Object, struct font *);
193 static Lisp_Object fontset_font (Lisp_Object, int, struct face *, int);
194 static Lisp_Object make_fontset (Lisp_Object, Lisp_Object, Lisp_Object);
195 static Lisp_Object fontset_pattern_regexp (Lisp_Object);
196 static void accumulate_script_ranges (Lisp_Object, Lisp_Object,
197 Lisp_Object);
198 static void set_fontset_font (Lisp_Object, Lisp_Object);
200 /* Return 1 if ID is a valid fontset id, else return 0.
201 Optimized away if ENABLE_CHECKING is not defined. */
203 static int
204 fontset_id_valid_p (int id)
206 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
211 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
213 /* Return the fontset with ID. No check of ID's validness. */
214 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
216 /* Macros to access special values of FONTSET. */
217 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
219 /* Macros to access special values of (base) FONTSET. */
220 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
221 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
222 /* #define FONTSET_SPEC(fontset) XCHAR_TABLE (fontset)->extras[5] */
224 /* Macros to access special values of (realized) FONTSET. */
225 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
226 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
227 /* #define FONTSET_OBJLIST(fontset) XCHAR_TABLE (fontset)->extras[4] */
228 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
229 /* #define FONTSET_REPERTORY(fontset) XCHAR_TABLE (fontset)->extras[6] */
230 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
232 /* For both base and realized fontset. */
233 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
235 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
238 /* Macros for FONT-DEF and RFONT-DEF of fontset. */
239 #define FONT_DEF_NEW(font_def, font_spec, encoding, repertory) \
240 do { \
241 (font_def) = Fmake_vector (make_number (3), (font_spec)); \
242 ASET ((font_def), 1, encoding); \
243 ASET ((font_def), 2, repertory); \
244 } while (0)
246 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
247 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
248 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
250 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
251 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
252 ASET ((rfont_def), 0, make_number (face_id))
253 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
254 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (AREF (rfont_def, 1))
255 #define RFONT_DEF_OBJECT(rfont_def) AREF (rfont_def, 2)
256 #define RFONT_DEF_SET_OBJECT(rfont_def, object) \
257 ASET ((rfont_def), 2, (object))
258 /* Score of RFONT_DEF is an integer value; the lowest 8 bits represent
259 the order of listing by font backends, the higher bits represents
260 the order given by charset priority list. The smaller value is
261 preferable. */
262 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
263 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
264 ASET ((rfont_def), 3, make_number (score))
265 #define RFONT_DEF_NEW(rfont_def, font_def) \
266 do { \
267 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
268 ASET ((rfont_def), 1, (font_def)); \
269 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
270 } while (0)
273 /* Return the element of FONTSET for the character C. If FONTSET is a
274 base fontset other then the default fontset and FONTSET doesn't
275 contain information for C, return the information in the default
276 fontset. */
278 #define FONTSET_REF(fontset, c) \
279 (EQ (fontset, Vdefault_fontset) \
280 ? CHAR_TABLE_REF (fontset, c) \
281 : fontset_ref ((fontset), (c)))
283 static Lisp_Object
284 fontset_ref (Lisp_Object fontset, int c)
286 Lisp_Object elt;
288 elt = CHAR_TABLE_REF (fontset, c);
289 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
290 /* Don't check Vdefault_fontset for a realized fontset. */
291 && NILP (FONTSET_BASE (fontset)))
292 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
293 return elt;
296 /* Set elements of FONTSET for characters in RANGE to the value ELT.
297 RANGE is a cons (FROM . TO), where FROM and TO are character codes
298 specifying a range. */
300 #define FONTSET_SET(fontset, range, elt) \
301 Fset_char_table_range ((fontset), (range), (elt))
304 /* Modify the elements of FONTSET for characters in RANGE by replacing
305 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
306 and TO are character codes specifying a range. If ADD is nil,
307 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
308 append ELT. */
310 #define FONTSET_ADD(fontset, range, elt, add) \
311 (NILP (add) \
312 ? (NILP (range) \
313 ? (FONTSET_FALLBACK (fontset) = Fmake_vector (make_number (1), (elt))) \
314 : Fset_char_table_range ((fontset), (range), \
315 Fmake_vector (make_number (1), (elt)))) \
316 : fontset_add ((fontset), (range), (elt), (add)))
318 static Lisp_Object
319 fontset_add (Lisp_Object fontset, Lisp_Object range, Lisp_Object elt, Lisp_Object add)
321 Lisp_Object args[2];
322 int idx = (EQ (add, Qappend) ? 0 : 1);
324 args[1 - idx] = Fmake_vector (make_number (1), elt);
326 if (CONSP (range))
328 int from = XINT (XCAR (range));
329 int to = XINT (XCDR (range));
330 int from1, to1;
332 do {
333 from1 = from, to1 = to;
334 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
335 char_table_set_range (fontset, from, to1,
336 NILP (args[idx]) ? args[1 - idx]
337 : Fvconcat (2, args));
338 from = to1 + 1;
339 } while (from < to);
341 else
343 args[idx] = FONTSET_FALLBACK (fontset);
344 FONTSET_FALLBACK (fontset)
345 = NILP (args[idx]) ? args[1 - idx] : Fvconcat (2, args);
347 return Qnil;
350 static int
351 fontset_compare_rfontdef (const void *val1, const void *val2)
353 return (RFONT_DEF_SCORE (*(Lisp_Object *) val1)
354 - RFONT_DEF_SCORE (*(Lisp_Object *) val2));
357 /* Update FONT-GROUP which has this form:
358 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
359 RFONT-DEF0 RFONT-DEF1 ... ]
360 Reorder RFONT-DEFs according to the current language, and update
361 CHARSET-ORDERED-LIST-TICK.
363 If PREFERRED_FAMILY is not nil, that family has the higher priority
364 if the encoding charsets or languages in font-specs are the same. */
366 static void
367 reorder_font_vector (Lisp_Object font_group, struct font *font)
369 Lisp_Object vec, font_object;
370 int size;
371 int i;
372 int score_changed = 0;
374 if (font)
375 XSETFONT (font_object, font);
376 else
377 font_object = Qnil;
379 vec = XCDR (font_group);
380 size = ASIZE (vec);
381 /* Exclude the tailing nil element from the reordering. */
382 if (NILP (AREF (vec, size - 1)))
383 size--;
385 for (i = 0; i < size; i++)
387 Lisp_Object rfont_def = AREF (vec, i);
388 Lisp_Object font_def = RFONT_DEF_FONT_DEF (rfont_def);
389 Lisp_Object font_spec = FONT_DEF_SPEC (font_def);
390 int score = RFONT_DEF_SCORE (rfont_def) & 0xFF;
391 Lisp_Object otf_spec = Ffont_get (font_spec, QCotf);
393 if (! NILP (otf_spec))
394 /* A font-spec with :otf is preferable regardless of encoding
395 and language.. */
397 else if (! font_match_p (font_spec, font_object))
399 Lisp_Object encoding = FONT_DEF_ENCODING (font_def);
401 if (! NILP (encoding))
403 Lisp_Object tail;
405 for (tail = Vcharset_ordered_list;
406 ! EQ (tail, Vcharset_non_preferred_head) && CONSP (tail);
407 tail = XCDR (tail))
408 if (EQ (encoding, XCAR (tail)))
409 break;
410 else if (score <= min (INT_MAX, MOST_POSITIVE_FIXNUM) - 0x100)
411 score += 0x100;
413 else
415 Lisp_Object lang = Ffont_get (font_spec, QClang);
417 if (! NILP (lang)
418 && ! EQ (lang, Vcurrent_iso639_language)
419 && (! CONSP (Vcurrent_iso639_language)
420 || NILP (Fmemq (lang, Vcurrent_iso639_language))))
421 score |= 0x100;
424 if (RFONT_DEF_SCORE (rfont_def) != score)
426 RFONT_DEF_SET_SCORE (rfont_def, score);
427 score_changed = 1;
431 if (score_changed)
432 qsort (XVECTOR (vec)->contents, size, word_size,
433 fontset_compare_rfontdef);
434 XSETCAR (font_group, make_number (charset_ordered_list_tick));
437 /* Return a font-group (actually a cons (-1 . FONT-GROUP-VECTOR)) for
438 character C in FONTSET. If C is -1, return a fallback font-group.
439 If C is not -1, the value may be Qt (FONTSET doesn't have a font
440 for C even in the fallback group), or 0 (a font for C may be found
441 only in the fallback group). */
443 static Lisp_Object
444 fontset_get_font_group (Lisp_Object fontset, int c)
446 Lisp_Object font_group;
447 Lisp_Object base_fontset;
448 int from = 0, to = MAX_CHAR, i;
450 eassert (! BASE_FONTSET_P (fontset));
451 if (c >= 0)
452 font_group = CHAR_TABLE_REF (fontset, c);
453 else
454 font_group = FONTSET_FALLBACK (fontset);
455 if (! NILP (font_group))
456 return font_group;
457 base_fontset = FONTSET_BASE (fontset);
458 if (NILP (base_fontset))
459 font_group = Qnil;
460 else if (c >= 0)
461 font_group = char_table_ref_and_range (base_fontset, c, &from, &to);
462 else
463 font_group = FONTSET_FALLBACK (base_fontset);
464 if (NILP (font_group))
466 font_group = make_number (0);
467 if (c >= 0)
468 char_table_set_range (fontset, from, to, font_group);
469 return font_group;
471 if (!VECTORP (font_group))
472 return font_group;
473 font_group = Fcopy_sequence (font_group);
474 for (i = 0; i < ASIZE (font_group); i++)
475 if (! NILP (AREF (font_group, i)))
477 Lisp_Object rfont_def;
479 RFONT_DEF_NEW (rfont_def, AREF (font_group, i));
480 /* Remember the original order. */
481 RFONT_DEF_SET_SCORE (rfont_def, i);
482 ASET (font_group, i, rfont_def);
484 font_group = Fcons (make_number (-1), font_group);
485 if (c >= 0)
486 char_table_set_range (fontset, from, to, font_group);
487 else
488 FONTSET_FALLBACK (fontset) = font_group;
489 return font_group;
492 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
493 character C. If no font is found, return Qnil if there's a
494 possibility that the default fontset or the fallback font groups
495 have a proper font, and return Qt if not.
497 If a font is found but is not yet opened, open it (if FACE is not
498 NULL) or return Qnil (if FACE is NULL).
500 ID is a charset-id that must be preferred, or -1 meaning no
501 preference.
503 If FALLBACK is nonzero, search only fallback fonts. */
505 static Lisp_Object
506 fontset_find_font (Lisp_Object fontset, int c, struct face *face, int id, int fallback)
508 Lisp_Object vec, font_group;
509 int i, charset_matched = 0, found_index;
510 FRAME_PTR f = (FRAMEP (FONTSET_FRAME (fontset))
511 ? XFRAME (FONTSET_FRAME (fontset)) : XFRAME (selected_frame));
512 Lisp_Object rfont_def;
514 font_group = fontset_get_font_group (fontset, fallback ? -1 : c);
515 if (! CONSP (font_group))
516 return font_group;
517 vec = XCDR (font_group);
518 if (ASIZE (vec) == 0)
519 return Qnil;
521 if (ASIZE (vec) > 1)
523 if (XINT (XCAR (font_group)) != charset_ordered_list_tick)
524 /* We have just created the font-group,
525 or the charset priorities were changed. */
526 reorder_font_vector (font_group, face->ascii_face->font);
527 if (id >= 0)
528 /* Find a spec matching with the charset ID to try at
529 first. */
530 for (i = 0; i < ASIZE (vec); i++)
532 Lisp_Object repertory;
534 rfont_def = AREF (vec, i);
535 if (NILP (rfont_def))
536 break;
537 repertory = FONT_DEF_REPERTORY (RFONT_DEF_FONT_DEF (rfont_def));
539 if (XINT (repertory) == id)
541 charset_matched = i;
542 break;
547 /* Find the first available font in the vector of RFONT-DEF. */
548 for (i = 0; i < ASIZE (vec); i++)
550 Lisp_Object font_def;
551 Lisp_Object font_entity, font_object;
553 found_index = i;
554 if (i == 0)
556 if (charset_matched > 0)
558 /* Try the element matching with the charset ID at first. */
559 found_index = charset_matched;
560 /* Make this negative so that we don't come here in the
561 next loop. */
562 charset_matched = - charset_matched;
563 /* We must try the first element in the next loop. */
564 i--;
567 else if (i == - charset_matched)
569 /* We have already tried this element and the followings
570 that have the same font specifications in the first
571 iteration. So, skip them all. */
572 rfont_def = AREF (vec, i);
573 font_def = RFONT_DEF_FONT_DEF (rfont_def);
574 for (; i + 1 < ASIZE (vec); i++)
576 rfont_def = AREF (vec, i + 1);
577 if (NILP (rfont_def))
578 break;
579 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
580 break;
582 continue;
585 rfont_def = AREF (vec, found_index);
586 if (NILP (rfont_def))
588 if (i < 0)
589 continue;
590 /* This is a sign of not to try the other fonts. */
591 return Qt;
593 if (INTEGERP (RFONT_DEF_FACE (rfont_def))
594 && XINT (RFONT_DEF_FACE (rfont_def)) < 0)
595 /* We couldn't open this font last time. */
596 continue;
598 font_object = RFONT_DEF_OBJECT (rfont_def);
599 if (NILP (font_object))
601 font_def = RFONT_DEF_FONT_DEF (rfont_def);
603 if (! face)
604 /* We have not yet opened the font. */
605 return Qnil;
606 /* Find a font best-matching with the spec without checking
607 the support of the character C. That checking is costly,
608 and even without the checking, the found font supports C
609 in high possibility. */
610 font_entity = font_find_for_lface (f, face->lface,
611 FONT_DEF_SPEC (font_def), -1);
612 if (NILP (font_entity))
614 /* Record that no font matches the spec. */
615 RFONT_DEF_SET_FACE (rfont_def, -1);
616 continue;
618 font_object = font_open_for_lface (f, font_entity, face->lface,
619 FONT_DEF_SPEC (font_def));
620 if (NILP (font_object))
622 /* Something strange happened, perhaps because of a
623 Font-backend problem. Too avoid crashing, record
624 that this spec is unusable. It may be better to find
625 another font of the same spec, but currently we don't
626 have such an API. */
627 RFONT_DEF_SET_FACE (rfont_def, -1);
628 continue;
630 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
633 if (font_has_char (f, font_object, c))
634 goto found;
636 /* Find a font already opened, matching with the current spec,
637 and supporting C. */
638 font_def = RFONT_DEF_FONT_DEF (rfont_def);
639 for (; found_index + 1 < ASIZE (vec); found_index++)
641 rfont_def = AREF (vec, found_index + 1);
642 if (NILP (rfont_def))
643 break;
644 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def), font_def))
645 break;
646 font_object = RFONT_DEF_OBJECT (rfont_def);
647 if (! NILP (font_object) && font_has_char (f, font_object, c))
649 found_index++;
650 goto found;
654 /* Find a font-entity with the current spec and supporting C. */
655 font_entity = font_find_for_lface (f, face->lface,
656 FONT_DEF_SPEC (font_def), c);
657 if (! NILP (font_entity))
659 /* We found a font. Open it and insert a new element for
660 that font in VEC. */
661 Lisp_Object new_vec;
662 int j;
664 font_object = font_open_for_lface (f, font_entity, face->lface,
665 Qnil);
666 if (NILP (font_object))
667 continue;
668 RFONT_DEF_NEW (rfont_def, font_def);
669 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
670 RFONT_DEF_SET_SCORE (rfont_def, RFONT_DEF_SCORE (rfont_def));
671 new_vec = Fmake_vector (make_number (ASIZE (vec) + 1), Qnil);
672 found_index++;
673 for (j = 0; j < found_index; j++)
674 ASET (new_vec, j, AREF (vec, j));
675 ASET (new_vec, j, rfont_def);
676 for (j++; j < ASIZE (new_vec); j++)
677 ASET (new_vec, j, AREF (vec, j - 1));
678 XSETCDR (font_group, new_vec);
679 vec = new_vec;
680 goto found;
682 if (i >= 0)
683 i = found_index;
686 FONTSET_SET (fontset, make_number (c), make_number (0));
687 return Qnil;
689 found:
690 if (fallback && found_index > 0)
692 /* The order of fonts in the fallback font-group is not that
693 important, and it is better to move the found font to the
694 first of the group so that the next try will find it
695 quickly. */
696 for (i = found_index; i > 0; i--)
697 ASET (vec, i, AREF (vec, i - 1));
698 ASET (vec, 0, rfont_def);
700 return rfont_def;
704 static Lisp_Object
705 fontset_font (Lisp_Object fontset, int c, struct face *face, int id)
707 Lisp_Object rfont_def, default_rfont_def IF_LINT (= Qnil);
708 Lisp_Object base_fontset;
710 /* Try a font-group of FONTSET. */
711 FONT_DEFERRED_LOG ("current fontset: font for", make_number (c), Qnil);
712 rfont_def = fontset_find_font (fontset, c, face, id, 0);
713 if (VECTORP (rfont_def))
714 return rfont_def;
715 if (NILP (rfont_def))
716 FONTSET_SET (fontset, make_number (c), make_number (0));
718 /* Try a font-group of the default fontset. */
719 base_fontset = FONTSET_BASE (fontset);
720 if (! EQ (base_fontset, Vdefault_fontset))
722 if (NILP (FONTSET_DEFAULT (fontset)))
723 FONTSET_DEFAULT (fontset)
724 = make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset);
725 FONT_DEFERRED_LOG ("default fontset: font for", make_number (c), Qnil);
726 default_rfont_def
727 = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0);
728 if (VECTORP (default_rfont_def))
729 return default_rfont_def;
730 if (NILP (default_rfont_def))
731 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c),
732 make_number (0));
735 /* Try a fallback font-group of FONTSET. */
736 if (! EQ (rfont_def, Qt))
738 FONT_DEFERRED_LOG ("current fallback: font for", make_number (c), Qnil);
739 rfont_def = fontset_find_font (fontset, c, face, id, 1);
740 if (VECTORP (rfont_def))
741 return rfont_def;
742 /* Remember that FONTSET has no font for C. */
743 FONTSET_SET (fontset, make_number (c), Qt);
746 /* Try a fallback font-group of the default fontset. */
747 if (! EQ (base_fontset, Vdefault_fontset)
748 && ! EQ (default_rfont_def, Qt))
750 FONT_DEFERRED_LOG ("default fallback: font for", make_number (c), Qnil);
751 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1);
752 if (VECTORP (rfont_def))
753 return rfont_def;
754 /* Remember that the default fontset has no font for C. */
755 FONTSET_SET (FONTSET_DEFAULT (fontset), make_number (c), Qt);
758 return Qnil;
761 /* Return a newly created fontset with NAME. If BASE is nil, make a
762 base fontset. Otherwise make a realized fontset whose base is
763 BASE. */
765 static Lisp_Object
766 make_fontset (Lisp_Object frame, Lisp_Object name, Lisp_Object base)
768 Lisp_Object fontset;
769 int size = ASIZE (Vfontset_table);
770 int id = next_fontset_id;
772 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
773 the next available fontset ID. So it is expected that this loop
774 terminates quickly. In addition, as the last element of
775 Vfontset_table is always nil, we don't have to check the range of
776 id. */
777 while (!NILP (AREF (Vfontset_table, id))) id++;
779 if (id + 1 == size)
780 Vfontset_table = larger_vector (Vfontset_table, 1, -1);
782 fontset = Fmake_char_table (Qfontset, Qnil);
784 FONTSET_ID (fontset) = make_number (id);
785 if (NILP (base))
787 FONTSET_NAME (fontset) = name;
789 else
791 FONTSET_NAME (fontset) = Qnil;
792 FONTSET_FRAME (fontset) = frame;
793 FONTSET_BASE (fontset) = base;
796 ASET (Vfontset_table, id, fontset);
797 next_fontset_id = id + 1;
798 return fontset;
802 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
804 /* Return the name of the fontset who has ID. */
806 Lisp_Object
807 fontset_name (int id)
809 Lisp_Object fontset;
811 fontset = FONTSET_FROM_ID (id);
812 return FONTSET_NAME (fontset);
816 /* Return the ASCII font name of the fontset who has ID. */
818 Lisp_Object
819 fontset_ascii (int id)
821 Lisp_Object fontset, elt;
823 fontset= FONTSET_FROM_ID (id);
824 elt = FONTSET_ASCII (fontset);
825 if (CONSP (elt))
826 elt = XCAR (elt);
827 return elt;
830 static void
831 free_realized_fontset (FRAME_PTR f, Lisp_Object fontset)
833 #if 0
834 Lisp_Object tail;
836 if (0)
837 for (tail = FONTSET_OBJLIST (fontset); CONSP (tail); tail = XCDR (tail))
839 eassert (FONT_OBJECT_P (XCAR (tail)));
840 font_close_object (f, XCAR (tail));
842 #endif
845 /* Free fontset of FACE defined on frame F. Called from
846 free_realized_face. */
848 void
849 free_face_fontset (FRAME_PTR f, struct face *face)
851 Lisp_Object fontset;
853 fontset = FONTSET_FROM_ID (face->fontset);
854 if (NILP (fontset))
855 return;
856 eassert (! BASE_FONTSET_P (fontset));
857 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
858 free_realized_fontset (f, fontset);
859 ASET (Vfontset_table, face->fontset, Qnil);
860 if (face->fontset < next_fontset_id)
861 next_fontset_id = face->fontset;
862 if (! NILP (FONTSET_DEFAULT (fontset)))
864 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
866 fontset = AREF (Vfontset_table, id);
867 eassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
868 eassert (f == XFRAME (FONTSET_FRAME (fontset)));
869 free_realized_fontset (f, fontset);
870 ASET (Vfontset_table, id, Qnil);
871 if (id < next_fontset_id)
872 next_fontset_id = face->fontset;
874 face->fontset = -1;
878 #if 0
879 /* Return 1 if FACE is suitable for displaying character C.
880 Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P
881 when C is not an ASCII character. */
884 face_suitable_for_char_p (struct face *face, int c)
886 Lisp_Object fontset, rfont_def;
888 fontset = FONTSET_FROM_ID (face->fontset);
889 rfont_def = fontset_font (fontset, c, NULL, -1);
890 return (VECTORP (rfont_def)
891 && INTEGERP (RFONT_DEF_FACE (rfont_def))
892 && face->id == XINT (RFONT_DEF_FACE (rfont_def)));
894 #endif
897 /* Return ID of face suitable for displaying character C on frame F.
898 FACE must be realized for ASCII characters in advance. Called from
899 the macro FACE_FOR_CHAR. */
902 face_for_char (FRAME_PTR f, struct face *face, int c, int pos, Lisp_Object object)
904 Lisp_Object fontset, rfont_def, charset;
905 int face_id;
906 int id;
908 /* If face->fontset is negative (that happens when no font is found
909 for face), just return face->ascii_face because we can't do
910 anything. Perhaps, we should fix the callers to assure
911 that face->fontset is always valid. */
912 if (ASCII_CHAR_P (c) || face->fontset < 0)
913 return face->ascii_face->id;
915 eassert (fontset_id_valid_p (face->fontset));
916 fontset = FONTSET_FROM_ID (face->fontset);
917 eassert (!BASE_FONTSET_P (fontset));
919 if (pos < 0)
921 id = -1;
922 charset = Qnil;
924 else
926 charset = Fget_char_property (make_number (pos), Qcharset, object);
927 if (CHARSETP (charset))
929 Lisp_Object val;
931 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
932 if (CONSP (val) && CHARSETP (XCDR (val)))
933 charset = XCDR (val);
934 id = XINT (CHARSET_SYMBOL_ID (charset));
936 else
937 id = -1;
940 rfont_def = fontset_font (fontset, c, face, id);
941 if (VECTORP (rfont_def))
943 if (INTEGERP (RFONT_DEF_FACE (rfont_def)))
944 face_id = XINT (RFONT_DEF_FACE (rfont_def));
945 else
947 Lisp_Object font_object;
949 font_object = RFONT_DEF_OBJECT (rfont_def);
950 face_id = face_for_font (f, font_object, face);
951 RFONT_DEF_SET_FACE (rfont_def, face_id);
954 else
956 if (INTEGERP (FONTSET_NOFONT_FACE (fontset)))
957 face_id = XINT (FONTSET_NOFONT_FACE (fontset));
958 else
960 face_id = face_for_font (f, Qnil, face);
961 FONTSET_NOFONT_FACE (fontset) = make_number (face_id);
964 eassert (face_id >= 0);
965 return face_id;
969 Lisp_Object
970 font_for_char (struct face *face, int c, int pos, Lisp_Object object)
972 Lisp_Object fontset, rfont_def, charset;
973 int id;
975 if (ASCII_CHAR_P (c))
977 Lisp_Object font_object;
979 XSETFONT (font_object, face->ascii_face->font);
980 return font_object;
983 eassert (fontset_id_valid_p (face->fontset));
984 fontset = FONTSET_FROM_ID (face->fontset);
985 eassert (!BASE_FONTSET_P (fontset));
986 if (pos < 0)
988 id = -1;
989 charset = Qnil;
991 else
993 charset = Fget_char_property (make_number (pos), Qcharset, object);
994 if (CHARSETP (charset))
996 Lisp_Object val;
998 val = assq_no_quit (charset, Vfont_encoding_charset_alist);
999 if (CONSP (val) && CHARSETP (XCDR (val)))
1000 charset = XCDR (val);
1001 id = XINT (CHARSET_SYMBOL_ID (charset));
1003 else
1004 id = -1;
1007 rfont_def = fontset_font (fontset, c, face, id);
1008 return (VECTORP (rfont_def)
1009 ? RFONT_DEF_OBJECT (rfont_def)
1010 : Qnil);
1014 /* Make a realized fontset for ASCII face FACE on frame F from the
1015 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
1016 default fontset as the base. Value is the id of the new fontset.
1017 Called from realize_x_face. */
1020 make_fontset_for_ascii_face (FRAME_PTR f, int base_fontset_id, struct face *face)
1022 Lisp_Object base_fontset, fontset, frame;
1024 XSETFRAME (frame, f);
1025 if (base_fontset_id >= 0)
1027 base_fontset = FONTSET_FROM_ID (base_fontset_id);
1028 if (!BASE_FONTSET_P (base_fontset))
1029 base_fontset = FONTSET_BASE (base_fontset);
1030 if (! BASE_FONTSET_P (base_fontset))
1031 abort ();
1033 else
1034 base_fontset = Vdefault_fontset;
1036 fontset = make_fontset (frame, Qnil, base_fontset);
1037 return XINT (FONTSET_ID (fontset));
1042 /* Cache data used by fontset_pattern_regexp. The car part is a
1043 pattern string containing at least one wild card, the cdr part is
1044 the corresponding regular expression. */
1045 static Lisp_Object Vcached_fontset_data;
1047 #define CACHED_FONTSET_NAME SSDATA (XCAR (Vcached_fontset_data))
1048 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
1050 /* If fontset name PATTERN contains any wild card, return regular
1051 expression corresponding to PATTERN. */
1053 static Lisp_Object
1054 fontset_pattern_regexp (Lisp_Object pattern)
1056 if (!strchr (SSDATA (pattern), '*')
1057 && !strchr (SSDATA (pattern), '?'))
1058 /* PATTERN does not contain any wild cards. */
1059 return Qnil;
1061 if (!CONSP (Vcached_fontset_data)
1062 || strcmp (SSDATA (pattern), CACHED_FONTSET_NAME))
1064 /* We must at first update the cached data. */
1065 unsigned char *regex, *p0, *p1;
1066 int ndashes = 0, nstars = 0, nescs = 0;
1068 for (p0 = SDATA (pattern); *p0; p0++)
1070 if (*p0 == '-')
1071 ndashes++;
1072 else if (*p0 == '*')
1073 nstars++;
1074 else if (*p0 == '['
1075 || *p0 == '.' || *p0 == '\\'
1076 || *p0 == '+' || *p0 == '^'
1077 || *p0 == '$')
1078 nescs++;
1081 /* If PATTERN is not full XLFD we convert "*" to ".*". Otherwise
1082 we convert "*" to "[^-]*" which is much faster in regular
1083 expression matching. */
1084 if (ndashes < 14)
1085 p1 = regex = alloca (SBYTES (pattern) + 2 * nstars + 2 * nescs + 1);
1086 else
1087 p1 = regex = alloca (SBYTES (pattern) + 5 * nstars + 2 * nescs + 1);
1089 *p1++ = '^';
1090 for (p0 = SDATA (pattern); *p0; p0++)
1092 if (*p0 == '*')
1094 if (ndashes < 14)
1095 *p1++ = '.';
1096 else
1097 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1098 *p1++ = '*';
1100 else if (*p0 == '?')
1101 *p1++ = '.';
1102 else if (*p0 == '['
1103 || *p0 == '.' || *p0 == '\\'
1104 || *p0 == '+' || *p0 == '^'
1105 || *p0 == '$')
1106 *p1++ = '\\', *p1++ = *p0;
1107 else
1108 *p1++ = *p0;
1110 *p1++ = '$';
1111 *p1++ = 0;
1113 Vcached_fontset_data = Fcons (build_string (SSDATA (pattern)),
1114 build_string ((char *) regex));
1117 return CACHED_FONTSET_REGEX;
1120 /* Return ID of the base fontset named NAME. If there's no such
1121 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1122 0: pattern containing '*' and '?' as wildcards
1123 1: regular expression
1124 2: literal fontset name
1128 fs_query_fontset (Lisp_Object name, int name_pattern)
1130 Lisp_Object tem;
1131 int i;
1133 name = Fdowncase (name);
1134 if (name_pattern != 1)
1136 tem = Frassoc (name, Vfontset_alias_alist);
1137 if (NILP (tem))
1138 tem = Fassoc (name, Vfontset_alias_alist);
1139 if (CONSP (tem) && STRINGP (XCAR (tem)))
1140 name = XCAR (tem);
1141 else if (name_pattern == 0)
1143 tem = fontset_pattern_regexp (name);
1144 if (STRINGP (tem))
1146 name = tem;
1147 name_pattern = 1;
1152 for (i = 0; i < ASIZE (Vfontset_table); i++)
1154 Lisp_Object fontset, this_name;
1156 fontset = FONTSET_FROM_ID (i);
1157 if (NILP (fontset)
1158 || !BASE_FONTSET_P (fontset))
1159 continue;
1161 this_name = FONTSET_NAME (fontset);
1162 if (name_pattern == 1
1163 ? fast_string_match_ignore_case (name, this_name) >= 0
1164 : !xstrcasecmp (SSDATA (name), SSDATA (this_name)))
1165 return i;
1167 return -1;
1171 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1172 doc: /* Return the name of a fontset that matches PATTERN.
1173 The value is nil if there is no matching fontset.
1174 PATTERN can contain `*' or `?' as a wildcard
1175 just as X font name matching algorithm allows.
1176 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1177 (Lisp_Object pattern, Lisp_Object regexpp)
1179 Lisp_Object fontset;
1180 int id;
1182 (*check_window_system_func) ();
1184 CHECK_STRING (pattern);
1186 if (SCHARS (pattern) == 0)
1187 return Qnil;
1189 id = fs_query_fontset (pattern, !NILP (regexpp));
1190 if (id < 0)
1191 return Qnil;
1193 fontset = FONTSET_FROM_ID (id);
1194 return FONTSET_NAME (fontset);
1197 /* Return a list of base fontset names matching PATTERN on frame F. */
1199 Lisp_Object
1200 list_fontsets (FRAME_PTR f, Lisp_Object pattern, int size)
1202 Lisp_Object frame, regexp, val;
1203 int id;
1205 XSETFRAME (frame, f);
1207 regexp = fontset_pattern_regexp (pattern);
1208 val = Qnil;
1210 for (id = 0; id < ASIZE (Vfontset_table); id++)
1212 Lisp_Object fontset, name;
1214 fontset = FONTSET_FROM_ID (id);
1215 if (NILP (fontset)
1216 || !BASE_FONTSET_P (fontset)
1217 || !EQ (frame, FONTSET_FRAME (fontset)))
1218 continue;
1219 name = FONTSET_NAME (fontset);
1221 if (STRINGP (regexp)
1222 ? (fast_string_match (regexp, name) < 0)
1223 : strcmp (SSDATA (pattern), SSDATA (name)))
1224 continue;
1226 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1229 return val;
1233 /* Free all realized fontsets whose base fontset is BASE. */
1235 static void
1236 free_realized_fontsets (Lisp_Object base)
1238 int id;
1240 #if 0
1241 /* For the moment, this doesn't work because free_realized_face
1242 doesn't remove FACE from a cache. Until we find a solution, we
1243 suppress this code, and simply use Fclear_face_cache even though
1244 that is not efficient. */
1245 BLOCK_INPUT;
1246 for (id = 0; id < ASIZE (Vfontset_table); id++)
1248 Lisp_Object this = AREF (Vfontset_table, id);
1250 if (EQ (FONTSET_BASE (this), base))
1252 Lisp_Object tail;
1254 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1255 tail = XCDR (tail))
1257 FRAME_PTR f = XFRAME (FONTSET_FRAME (this));
1258 int face_id = XINT (XCDR (XCAR (tail)));
1259 struct face *face = FACE_FROM_ID (f, face_id);
1261 /* Face THIS itself is also freed by the following call. */
1262 free_realized_face (f, face);
1266 UNBLOCK_INPUT;
1267 #else /* not 0 */
1268 /* But, we don't have to call Fclear_face_cache if no fontset has
1269 been realized from BASE. */
1270 for (id = 0; id < ASIZE (Vfontset_table); id++)
1272 Lisp_Object this = AREF (Vfontset_table, id);
1274 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base))
1276 Fclear_face_cache (Qt);
1277 break;
1280 #endif /* not 0 */
1284 /* Check validity of NAME as a fontset name and return the
1285 corresponding fontset. If not valid, signal an error.
1287 If NAME is t, return Vdefault_fontset. If NAME is nil, return the
1288 fontset of *FRAME.
1290 Set *FRAME to the actual frame. */
1292 static Lisp_Object
1293 check_fontset_name (Lisp_Object name, Lisp_Object *frame)
1295 int id;
1297 if (NILP (*frame))
1298 *frame = selected_frame;
1299 CHECK_LIVE_FRAME (*frame);
1301 if (EQ (name, Qt))
1302 return Vdefault_fontset;
1303 if (NILP (name))
1305 id = FRAME_FONTSET (XFRAME (*frame));
1307 else
1309 CHECK_STRING (name);
1310 /* First try NAME as literal. */
1311 id = fs_query_fontset (name, 2);
1312 if (id < 0)
1313 /* For backward compatibility, try again NAME as pattern. */
1314 id = fs_query_fontset (name, 0);
1315 if (id < 0)
1316 error ("Fontset `%s' does not exist", SDATA (name));
1318 return FONTSET_FROM_ID (id);
1321 static void
1322 accumulate_script_ranges (Lisp_Object arg, Lisp_Object range, Lisp_Object val)
1324 if (EQ (XCAR (arg), val))
1326 if (CONSP (range))
1327 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1328 else
1329 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1334 /* Callback function for map_charset_chars in Fset_fontset_font.
1335 ARG is a vector [ FONTSET FONT_DEF ADD ASCII SCRIPT_RANGE_LIST ].
1337 In FONTSET, set FONT_DEF in a fashion specified by ADD for
1338 characters in RANGE and ranges in SCRIPT_RANGE_LIST before RANGE.
1339 The consumed ranges are popped up from SCRIPT_RANGE_LIST, and the
1340 new SCRIPT_RANGE_LIST is stored in ARG.
1342 If ASCII is nil, don't set FONT_DEF for ASCII characters. It is
1343 assured that SCRIPT_RANGE_LIST doesn't contain ASCII in that
1344 case. */
1346 static void
1347 set_fontset_font (Lisp_Object arg, Lisp_Object range)
1349 Lisp_Object fontset, font_def, add, ascii, script_range_list;
1350 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1352 fontset = AREF (arg, 0);
1353 font_def = AREF (arg, 1);
1354 add = AREF (arg, 2);
1355 ascii = AREF (arg, 3);
1356 script_range_list = AREF (arg, 4);
1358 if (NILP (ascii) && from < 0x80)
1360 if (to < 0x80)
1361 return;
1362 from = 0x80;
1363 range = Fcons (make_number (0x80), XCDR (range));
1366 #define SCRIPT_FROM XINT (XCAR (XCAR (script_range_list)))
1367 #define SCRIPT_TO XINT (XCDR (XCAR (script_range_list)))
1368 #define POP_SCRIPT_RANGE() script_range_list = XCDR (script_range_list)
1370 for (; CONSP (script_range_list) && SCRIPT_TO < from; POP_SCRIPT_RANGE ())
1371 FONTSET_ADD (fontset, XCAR (script_range_list), font_def, add);
1372 if (CONSP (script_range_list))
1374 if (SCRIPT_FROM < from)
1375 range = Fcons (make_number (SCRIPT_FROM), XCDR (range));
1376 while (CONSP (script_range_list) && SCRIPT_TO <= to)
1377 POP_SCRIPT_RANGE ();
1378 if (CONSP (script_range_list) && SCRIPT_FROM <= to)
1379 XSETCAR (XCAR (script_range_list), make_number (to + 1));
1382 FONTSET_ADD (fontset, range, font_def, add);
1383 ASET (arg, 4, script_range_list);
1386 static void update_auto_fontset_alist (Lisp_Object, Lisp_Object);
1389 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1390 doc: /*
1391 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1393 NAME is a fontset name string, nil for the fontset of FRAME, or t for
1394 the default fontset.
1396 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1397 In that case, use FONT-SPEC for all characters in the range FROM and
1398 TO (inclusive).
1400 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1401 all characters that belong to the script.
1403 TARGET may be a charset. In that case, use FONT-SPEC for all
1404 characters in the charset.
1406 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1407 that no FONT-SPEC is specified.
1409 FONT-SPEC may one of these:
1410 * A font-spec object made by the function `font-spec' (which see).
1411 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1412 REGISTRY is a font registry name. FAMILY may contain foundry
1413 name, and REGISTRY may contain encoding name.
1414 * A font name string.
1415 * nil, which explicitly specifies that there's no font for TARGET.
1417 Optional 4th argument FRAME is a frame or nil for the selected frame
1418 that is concerned in the case that NAME is nil.
1420 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1421 to the font specifications for TARGET previously set. If it is
1422 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1423 appended. By default, FONT-SPEC overrides the previous settings. */)
1424 (Lisp_Object name, Lisp_Object target, Lisp_Object font_spec, Lisp_Object frame, Lisp_Object add)
1426 Lisp_Object fontset;
1427 Lisp_Object font_def, registry, family;
1428 Lisp_Object range_list;
1429 struct charset *charset = NULL;
1430 Lisp_Object fontname;
1431 int ascii_changed = 0;
1433 fontset = check_fontset_name (name, &frame);
1435 fontname = Qnil;
1436 if (CONSP (font_spec))
1438 Lisp_Object spec = Ffont_spec (0, NULL);
1440 font_parse_family_registry (XCAR (font_spec), XCDR (font_spec), spec);
1441 font_spec = spec;
1442 fontname = Ffont_xlfd_name (font_spec, Qnil);
1444 else if (STRINGP (font_spec))
1446 Lisp_Object args[2];
1448 fontname = font_spec;
1449 args[0] = QCname;
1450 args[1] = font_spec;
1451 font_spec = Ffont_spec (2, args);
1453 else if (FONT_SPEC_P (font_spec))
1454 fontname = Ffont_xlfd_name (font_spec, Qnil);
1455 else if (! NILP (font_spec))
1456 Fsignal (Qfont, list2 (build_string ("Invalid font-spec"), font_spec));
1458 if (! NILP (font_spec))
1460 Lisp_Object encoding, repertory;
1462 family = AREF (font_spec, FONT_FAMILY_INDEX);
1463 if (! NILP (family) )
1464 family = SYMBOL_NAME (family);
1465 registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1466 if (! NILP (registry))
1467 registry = Fdowncase (SYMBOL_NAME (registry));
1468 encoding = find_font_encoding (concat3 (family, build_string ("-"),
1469 registry));
1470 if (NILP (encoding))
1471 encoding = Qascii;
1473 if (SYMBOLP (encoding))
1475 CHECK_CHARSET (encoding);
1476 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1478 else
1480 repertory = XCDR (encoding);
1481 encoding = XCAR (encoding);
1482 CHECK_CHARSET (encoding);
1483 encoding = CHARSET_SYMBOL_ID (encoding);
1484 if (! NILP (repertory) && SYMBOLP (repertory))
1486 CHECK_CHARSET (repertory);
1487 repertory = CHARSET_SYMBOL_ID (repertory);
1490 FONT_DEF_NEW (font_def, font_spec, encoding, repertory);
1492 else
1493 font_def = Qnil;
1495 if (CHARACTERP (target))
1497 if (XFASTINT (target) < 0x80)
1498 error ("Can't set a font for partial ASCII range");
1499 range_list = Fcons (Fcons (target, target), Qnil);
1501 else if (CONSP (target))
1503 Lisp_Object from, to;
1505 from = Fcar (target);
1506 to = Fcdr (target);
1507 CHECK_CHARACTER (from);
1508 CHECK_CHARACTER (to);
1509 if (XFASTINT (from) < 0x80)
1511 if (XFASTINT (from) != 0 || XFASTINT (to) < 0x7F)
1512 error ("Can't set a font for partial ASCII range");
1513 ascii_changed = 1;
1515 range_list = Fcons (target, Qnil);
1517 else if (SYMBOLP (target) && !NILP (target))
1519 Lisp_Object script_list;
1520 Lisp_Object val;
1522 range_list = Qnil;
1523 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1524 if (! NILP (Fmemq (target, script_list)))
1526 if (EQ (target, Qlatin))
1527 ascii_changed = 1;
1528 val = Fcons (target, Qnil);
1529 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1530 val);
1531 range_list = Fnreverse (XCDR (val));
1533 if (CHARSETP (target))
1535 CHECK_CHARSET_GET_CHARSET (target, charset);
1536 if (charset->ascii_compatible_p)
1537 ascii_changed = 1;
1539 else if (NILP (range_list))
1540 error ("Invalid script or charset name: %s",
1541 SDATA (SYMBOL_NAME (target)));
1543 else if (NILP (target))
1544 range_list = Fcons (Qnil, Qnil);
1545 else
1546 error ("Invalid target for setting a font");
1548 if (ascii_changed)
1550 Lisp_Object val;
1552 if (NILP (font_spec))
1553 error ("Can't set ASCII font to nil");
1554 val = CHAR_TABLE_REF (fontset, 0);
1555 if (! NILP (val) && EQ (add, Qappend))
1556 /* We are going to change just an additional font for ASCII. */
1557 ascii_changed = 0;
1560 if (charset)
1562 Lisp_Object arg;
1564 arg = Fmake_vector (make_number (5), Qnil);
1565 ASET (arg, 0, fontset);
1566 ASET (arg, 1, font_def);
1567 ASET (arg, 2, add);
1568 ASET (arg, 3, ascii_changed ? Qt : Qnil);
1569 ASET (arg, 4, range_list);
1571 map_charset_chars (set_fontset_font, Qnil, arg, charset,
1572 CHARSET_MIN_CODE (charset),
1573 CHARSET_MAX_CODE (charset));
1574 range_list = AREF (arg, 4);
1576 for (; CONSP (range_list); range_list = XCDR (range_list))
1577 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1579 if (ascii_changed)
1581 Lisp_Object tail, fr, alist;
1582 int fontset_id = XINT (FONTSET_ID (fontset));
1584 FONTSET_ASCII (fontset) = fontname;
1585 name = FONTSET_NAME (fontset);
1586 FOR_EACH_FRAME (tail, fr)
1588 FRAME_PTR f = XFRAME (fr);
1589 Lisp_Object font_object;
1590 struct face *face;
1592 if (FRAME_INITIAL_P (f) || FRAME_TERMCAP_P (f))
1593 continue;
1594 if (fontset_id != FRAME_FONTSET (f))
1595 continue;
1596 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
1597 if (face)
1598 font_object = font_load_for_lface (f, face->lface, font_spec);
1599 else
1600 font_object = font_open_by_spec (f, font_spec);
1601 if (! NILP (font_object))
1603 update_auto_fontset_alist (font_object, fontset);
1604 alist = Fcons (Fcons (Qfont, Fcons (name, font_object)), Qnil);
1605 Fmodify_frame_parameters (fr, alist);
1610 /* Free all realized fontsets whose base is FONTSET. This way, the
1611 specified character(s) are surely redisplayed by a correct
1612 font. */
1613 free_realized_fontsets (fontset);
1615 return Qnil;
1619 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1620 doc: /* Create a new fontset NAME from font information in FONTLIST.
1622 FONTLIST is an alist of scripts vs the corresponding font specification list.
1623 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1624 character of SCRIPT is displayed by a font that matches one of
1625 FONT-SPEC.
1627 SCRIPT is a symbol that appears in the first extra slot of the
1628 char-table `char-script-table'.
1630 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1631 `set-fontset-font' for the meaning. */)
1632 (Lisp_Object name, Lisp_Object fontlist)
1634 Lisp_Object fontset;
1635 int id;
1637 CHECK_STRING (name);
1638 CHECK_LIST (fontlist);
1640 name = Fdowncase (name);
1641 id = fs_query_fontset (name, 0);
1642 if (id < 0)
1644 Lisp_Object font_spec = Ffont_spec (0, NULL);
1645 Lisp_Object short_name;
1646 char xlfd[256];
1647 int len;
1649 if (font_parse_xlfd (SSDATA (name), SBYTES (name), font_spec) < 0)
1650 error ("Fontset name must be in XLFD format");
1651 short_name = AREF (font_spec, FONT_REGISTRY_INDEX);
1652 if (strncmp (SSDATA (SYMBOL_NAME (short_name)), "fontset-", 8)
1653 || SBYTES (SYMBOL_NAME (short_name)) < 9)
1654 error ("Registry field of fontset name must be \"fontset-*\"");
1655 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (short_name)),
1656 Vfontset_alias_alist);
1657 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso8859_1);
1658 fontset = make_fontset (Qnil, name, Qnil);
1659 len = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1660 if (len < 0)
1661 error ("Invalid fontset name (perhaps too long): %s", SDATA (name));
1662 FONTSET_ASCII (fontset) = make_unibyte_string (xlfd, len);
1664 else
1666 fontset = FONTSET_FROM_ID (id);
1667 free_realized_fontsets (fontset);
1668 Fset_char_table_range (fontset, Qt, Qnil);
1671 for (; CONSP (fontlist); fontlist = XCDR (fontlist))
1673 Lisp_Object elt, script;
1675 elt = XCAR (fontlist);
1676 script = Fcar (elt);
1677 elt = Fcdr (elt);
1678 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1679 for (; CONSP (elt); elt = XCDR (elt))
1680 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1681 else
1682 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1684 return name;
1688 /* Alist of automatically created fontsets. Each element is a cons
1689 (FONT-SPEC . FONTSET-ID). */
1690 static Lisp_Object auto_fontset_alist;
1692 /* Number of automatically created fontsets. */
1693 static ptrdiff_t num_auto_fontsets;
1695 /* Return a fontset synthesized from FONT-OBJECT. This is called from
1696 x_new_font when FONT-OBJECT is used for the default ASCII font of a
1697 frame, and the returned fontset is used for the default fontset of
1698 that frame. The fontset specifies a font of the same registry as
1699 FONT-OBJECT for all characters in the repertory of the registry
1700 (see Vfont_encoding_alist). If the repertory is not known, the
1701 fontset specifies the font for all Latin characters assuming that a
1702 user intends to use FONT-OBJECT for Latin characters. */
1705 fontset_from_font (Lisp_Object font_object)
1707 Lisp_Object font_name = font_get_name (font_object);
1708 Lisp_Object font_spec = copy_font_spec (font_object);
1709 Lisp_Object registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1710 Lisp_Object fontset_spec, alias, name, fontset;
1711 Lisp_Object val;
1713 val = assoc_no_quit (font_spec, auto_fontset_alist);
1714 if (CONSP (val))
1715 return XINT (FONTSET_ID (XCDR (val)));
1716 if (num_auto_fontsets++ == 0)
1717 alias = intern ("fontset-startup");
1718 else
1720 char temp[sizeof "fontset-auto" + INT_STRLEN_BOUND (ptrdiff_t)];
1722 sprintf (temp, "fontset-auto%"pD"d", num_auto_fontsets - 1);
1723 alias = intern (temp);
1725 fontset_spec = copy_font_spec (font_spec);
1726 ASET (fontset_spec, FONT_REGISTRY_INDEX, alias);
1727 name = Ffont_xlfd_name (fontset_spec, Qnil);
1728 if (NILP (name))
1729 abort ();
1730 fontset = make_fontset (Qnil, name, Qnil);
1731 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (alias)),
1732 Vfontset_alias_alist);
1733 alias = Fdowncase (AREF (font_object, FONT_NAME_INDEX));
1734 Vfontset_alias_alist = Fcons (Fcons (name, alias), Vfontset_alias_alist);
1735 auto_fontset_alist = Fcons (Fcons (font_spec, fontset), auto_fontset_alist);
1736 font_spec = Ffont_spec (0, NULL);
1737 ASET (font_spec, FONT_REGISTRY_INDEX, registry);
1739 Lisp_Object target = find_font_encoding (SYMBOL_NAME (registry));
1741 if (CONSP (target))
1742 target = XCDR (target);
1743 if (! CHARSETP (target))
1744 target = Qlatin;
1745 Fset_fontset_font (name, target, font_spec, Qnil, Qnil);
1746 Fset_fontset_font (name, Qnil, font_spec, Qnil, Qnil);
1749 FONTSET_ASCII (fontset) = font_name;
1751 return XINT (FONTSET_ID (fontset));
1755 /* Update auto_fontset_alist for FONTSET. When an ASCII font of
1756 FONTSET is changed, we delete an entry of FONTSET if any from
1757 auto_fontset_alist so that FONTSET is not re-used by
1758 fontset_from_font. */
1760 static void
1761 update_auto_fontset_alist (Lisp_Object font_object, Lisp_Object fontset)
1763 Lisp_Object prev, tail;
1765 for (prev = Qnil, tail = auto_fontset_alist; CONSP (tail);
1766 prev = tail, tail = XCDR (tail))
1767 if (EQ (fontset, XCDR (XCAR (tail))))
1769 if (NILP (prev))
1770 auto_fontset_alist = XCDR (tail);
1771 else
1772 XSETCDR (prev, XCDR (tail));
1773 break;
1778 /* Return a cons (FONT-OBJECT . GLYPH-CODE).
1779 FONT-OBJECT is the font for the character at POSITION in the current
1780 buffer. This is computed from all the text properties and overlays
1781 that apply to POSITION. POSITION may be nil, in which case,
1782 FONT-SPEC is the font for displaying the character CH with the
1783 default face.
1785 GLYPH-CODE is the glyph code in the font to use for the character.
1787 If the 2nd optional arg CH is non-nil, it is a character to check
1788 the font instead of the character at POSITION.
1790 It returns nil in the following cases:
1792 (1) The window system doesn't have a font for the character (thus
1793 it is displayed by an empty box).
1795 (2) The character code is invalid.
1797 (3) If POSITION is not nil, and the current buffer is not displayed
1798 in any window.
1800 In addition, the returned font name may not take into account of
1801 such redisplay engine hooks as what used in jit-lock-mode if
1802 POSITION is currently not visible. */
1805 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1806 doc: /* For internal use only. */)
1807 (Lisp_Object position, Lisp_Object ch)
1809 ptrdiff_t pos, pos_byte, dummy;
1810 int face_id;
1811 int c;
1812 struct frame *f;
1813 struct face *face;
1815 if (NILP (position))
1817 CHECK_CHARACTER (ch);
1818 c = XINT (ch);
1819 f = XFRAME (selected_frame);
1820 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
1821 pos = -1;
1823 else
1825 Lisp_Object window;
1826 struct window *w;
1828 CHECK_NUMBER_COERCE_MARKER (position);
1829 if (! (BEGV <= XINT (position) && XINT (position) < ZV))
1830 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1831 pos = XINT (position);
1832 pos_byte = CHAR_TO_BYTE (pos);
1833 if (NILP (ch))
1834 c = FETCH_CHAR (pos_byte);
1835 else
1837 CHECK_NATNUM (ch);
1838 c = XINT (ch);
1840 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1841 if (NILP (window))
1842 return Qnil;
1843 w = XWINDOW (window);
1844 f = XFRAME (w->frame);
1845 face_id = face_at_buffer_position (w, pos, -1, -1, &dummy,
1846 pos + 100, 0, -1);
1848 if (! CHAR_VALID_P (c))
1849 return Qnil;
1850 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1851 face = FACE_FROM_ID (f, face_id);
1852 if (face->font)
1854 unsigned code = face->font->driver->encode_char (face->font, c);
1855 Lisp_Object font_object;
1857 if (code == FONT_INVALID_CODE)
1858 return Qnil;
1859 XSETFONT (font_object, face->font);
1860 return Fcons (font_object, INTEGER_TO_CONS (code));
1862 return Qnil;
1866 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1867 doc: /* Return information about a fontset FONTSET on frame FRAME.
1869 FONTSET is a fontset name string, nil for the fontset of FRAME, or t
1870 for the default fontset. FRAME nil means the selected frame.
1872 The value is a char-table whose elements have this form:
1874 ((FONT OPENED-FONT ...) ...)
1876 FONT is a name of font specified for a range of characters.
1878 OPENED-FONT is a name of a font actually opened.
1880 The char-table has one extra slot. If FONTSET is not the default
1881 fontset, the value the extra slot is a char-table containing the
1882 information about the derived fonts from the default fontset. The
1883 format is the same as above. */)
1884 (Lisp_Object fontset, Lisp_Object frame)
1886 Lisp_Object *realized[2], fontsets[2], tables[2];
1887 Lisp_Object val, elt;
1888 int c, i, j, k;
1890 (*check_window_system_func) ();
1892 fontset = check_fontset_name (fontset, &frame);
1894 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1895 in the table `realized'. */
1896 realized[0] = alloca (word_size * ASIZE (Vfontset_table));
1897 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1899 elt = FONTSET_FROM_ID (i);
1900 if (!NILP (elt)
1901 && EQ (FONTSET_BASE (elt), fontset)
1902 && EQ (FONTSET_FRAME (elt), frame))
1903 realized[0][j++] = elt;
1905 realized[0][j] = Qnil;
1907 realized[1] = alloca (word_size * ASIZE (Vfontset_table));
1908 for (i = j = 0; ! NILP (realized[0][i]); i++)
1910 elt = FONTSET_DEFAULT (realized[0][i]);
1911 if (! NILP (elt))
1912 realized[1][j++] = elt;
1914 realized[1][j] = Qnil;
1916 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1917 fontsets[0] = fontset;
1918 if (!EQ (fontset, Vdefault_fontset))
1920 tables[1] = Fmake_char_table (Qnil, Qnil);
1921 XCHAR_TABLE (tables[0])->extras[0] = tables[1];
1922 fontsets[1] = Vdefault_fontset;
1925 /* Accumulate information of the fontset in TABLE. The format of
1926 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1927 for (k = 0; k <= 1; k++)
1929 for (c = 0; c <= MAX_CHAR; )
1931 int from = c, to = MAX_5_BYTE_CHAR;
1933 if (c <= MAX_5_BYTE_CHAR)
1935 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1937 else
1939 val = FONTSET_FALLBACK (fontsets[k]);
1940 to = MAX_CHAR;
1942 if (VECTORP (val))
1944 Lisp_Object alist;
1946 /* At first, set ALIST to ((FONT-SPEC) ...). */
1947 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1948 if (! NILP (AREF (val, i)))
1949 alist = Fcons (Fcons (FONT_DEF_SPEC (AREF (val, i)), Qnil),
1950 alist);
1951 alist = Fnreverse (alist);
1953 /* Then store opened font names to cdr of each elements. */
1954 for (i = 0; ! NILP (realized[k][i]); i++)
1956 if (c <= MAX_5_BYTE_CHAR)
1957 val = FONTSET_REF (realized[k][i], c);
1958 else
1959 val = FONTSET_FALLBACK (realized[k][i]);
1960 if (! CONSP (val) || ! VECTORP (XCDR (val)))
1961 continue;
1962 /* VAL: (int . [[FACE-ID FONT-DEF FONT-OBJECT int] ... ]) */
1963 val = XCDR (val);
1964 for (j = 0; j < ASIZE (val); j++)
1966 elt = AREF (val, j);
1967 if (FONT_OBJECT_P (RFONT_DEF_OBJECT (elt)))
1969 Lisp_Object font_object = RFONT_DEF_OBJECT (elt);
1970 Lisp_Object slot, name;
1972 slot = Fassq (RFONT_DEF_SPEC (elt), alist);
1973 name = AREF (font_object, FONT_NAME_INDEX);
1974 if (NILP (Fmember (name, XCDR (slot))))
1975 nconc2 (slot, Fcons (name, Qnil));
1980 /* Store ALIST in TBL for characters C..TO. */
1981 if (c <= MAX_5_BYTE_CHAR)
1982 char_table_set_range (tables[k], c, to, alist);
1983 else
1984 XCHAR_TABLE (tables[k])->defalt = alist;
1986 /* At last, change each elements to font names. */
1987 for (; CONSP (alist); alist = XCDR (alist))
1989 elt = XCAR (alist);
1990 XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil));
1993 c = to + 1;
1995 if (EQ (fontset, Vdefault_fontset))
1996 break;
1999 return tables[0];
2003 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
2004 doc: /* Return a font name pattern for character CH in fontset NAME.
2005 If NAME is t, find a pattern in the default fontset.
2006 If NAME is nil, find a pattern in the fontset of the selected frame.
2008 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
2009 family name and REGISTRY is a font registry name. This is actually
2010 the first font name pattern for CH in the fontset or in the default
2011 fontset.
2013 If the 2nd optional arg ALL is non-nil, return a list of all font name
2014 patterns. */)
2015 (Lisp_Object name, Lisp_Object ch, Lisp_Object all)
2017 int c;
2018 Lisp_Object fontset, elt, list, repertory, val;
2019 int i, j;
2020 Lisp_Object frame;
2022 frame = Qnil;
2023 fontset = check_fontset_name (name, &frame);
2025 CHECK_CHARACTER (ch);
2026 c = XINT (ch);
2027 list = Qnil;
2028 while (1)
2030 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
2031 i++, elt = FONTSET_FALLBACK (fontset))
2032 if (VECTORP (elt))
2033 for (j = 0; j < ASIZE (elt); j++)
2035 Lisp_Object family, registry;
2037 val = AREF (elt, j);
2038 if (NILP (val))
2039 return Qnil;
2040 repertory = AREF (val, 1);
2041 if (INTEGERP (repertory))
2043 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
2045 if (! CHAR_CHARSET_P (c, charset))
2046 continue;
2048 else if (CHAR_TABLE_P (repertory))
2050 if (NILP (CHAR_TABLE_REF (repertory, c)))
2051 continue;
2053 val = AREF (val, 0);
2054 /* VAL is a FONT-SPEC */
2055 family = AREF (val, FONT_FAMILY_INDEX);
2056 if (! NILP (family))
2057 family = SYMBOL_NAME (family);
2058 registry = AREF (val, FONT_REGISTRY_INDEX);
2059 if (! NILP (registry))
2060 registry = SYMBOL_NAME (registry);
2061 val = Fcons (family, registry);
2062 if (NILP (all))
2063 return val;
2064 list = Fcons (val, list);
2066 if (EQ (fontset, Vdefault_fontset))
2067 break;
2068 fontset = Vdefault_fontset;
2070 return (Fnreverse (list));
2073 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
2074 doc: /* Return a list of all defined fontset names. */)
2075 (void)
2077 Lisp_Object fontset, list;
2078 int i;
2080 list = Qnil;
2081 for (i = 0; i < ASIZE (Vfontset_table); i++)
2083 fontset = FONTSET_FROM_ID (i);
2084 if (!NILP (fontset)
2085 && BASE_FONTSET_P (fontset))
2086 list = Fcons (FONTSET_NAME (fontset), list);
2089 return list;
2093 #ifdef ENABLE_CHECKING
2095 Lisp_Object dump_fontset (Lisp_Object) EXTERNALLY_VISIBLE;
2097 Lisp_Object
2098 dump_fontset (Lisp_Object fontset)
2100 Lisp_Object vec;
2102 vec = Fmake_vector (make_number (3), Qnil);
2103 ASET (vec, 0, FONTSET_ID (fontset));
2105 if (BASE_FONTSET_P (fontset))
2107 ASET (vec, 1, FONTSET_NAME (fontset));
2109 else
2111 Lisp_Object frame;
2113 frame = FONTSET_FRAME (fontset);
2114 if (FRAMEP (frame))
2116 FRAME_PTR f = XFRAME (frame);
2118 if (FRAME_LIVE_P (f))
2119 ASET (vec, 1,
2120 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)),
2121 f->name));
2122 else
2123 ASET (vec, 1,
2124 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), Qnil));
2126 if (!NILP (FONTSET_DEFAULT (fontset)))
2127 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
2129 return vec;
2132 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
2133 doc: /* Return a brief summary of all fontsets for debug use. */)
2134 (void)
2136 Lisp_Object val;
2137 int i;
2139 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
2140 if (! NILP (AREF (Vfontset_table, i)))
2141 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
2142 return (Fnreverse (val));
2144 #endif /* ENABLE_CHECKING */
2146 void
2147 syms_of_fontset (void)
2149 DEFSYM (Qfontset, "fontset");
2150 Fput (Qfontset, Qchar_table_extra_slots, make_number (9));
2151 DEFSYM (Qfontset_info, "fontset-info");
2152 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2154 DEFSYM (Qprepend, "prepend");
2155 DEFSYM (Qappend, "append");
2156 DEFSYM (Qlatin, "latin");
2158 Vcached_fontset_data = Qnil;
2159 staticpro (&Vcached_fontset_data);
2161 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2162 staticpro (&Vfontset_table);
2164 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2165 staticpro (&Vdefault_fontset);
2166 FONTSET_ID (Vdefault_fontset) = make_number (0);
2167 FONTSET_NAME (Vdefault_fontset)
2168 = build_pure_c_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default");
2169 ASET (Vfontset_table, 0, Vdefault_fontset);
2170 next_fontset_id = 1;
2172 auto_fontset_alist = Qnil;
2173 staticpro (&auto_fontset_alist);
2175 DEFVAR_LISP ("font-encoding-charset-alist", Vfont_encoding_charset_alist,
2176 doc: /*
2177 Alist of charsets vs the charsets to determine the preferred font encoding.
2178 Each element looks like (CHARSET . ENCODING-CHARSET),
2179 where ENCODING-CHARSET is a charset registered in the variable
2180 `font-encoding-alist' as ENCODING.
2182 When a text has a property `charset' and the value is CHARSET, a font
2183 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2184 Vfont_encoding_charset_alist = Qnil;
2186 DEFVAR_LISP ("use-default-ascent", Vuse_default_ascent,
2187 doc: /*
2188 Char table of characters whose ascent values should be ignored.
2189 If an entry for a character is non-nil, the ascent value of the glyph
2190 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2192 This affects how a composite character which contains
2193 such a character is displayed on screen. */);
2194 Vuse_default_ascent = Qnil;
2196 DEFVAR_LISP ("ignore-relative-composition", Vignore_relative_composition,
2197 doc: /*
2198 Char table of characters which are not composed relatively.
2199 If an entry for a character is non-nil, a composition sequence
2200 which contains that character is displayed so that
2201 the glyph of that character is put without considering
2202 an ascent and descent value of a previous character. */);
2203 Vignore_relative_composition = Qnil;
2205 DEFVAR_LISP ("alternate-fontname-alist", Valternate_fontname_alist,
2206 doc: /* Alist of fontname vs list of the alternate fontnames.
2207 When a specified font name is not found, the corresponding
2208 alternate fontnames (if any) are tried instead. */);
2209 Valternate_fontname_alist = Qnil;
2211 DEFVAR_LISP ("fontset-alias-alist", Vfontset_alias_alist,
2212 doc: /* Alist of fontset names vs the aliases. */);
2213 Vfontset_alias_alist = Fcons (Fcons (FONTSET_NAME (Vdefault_fontset),
2214 build_pure_c_string ("fontset-default")),
2215 Qnil);
2217 DEFVAR_LISP ("vertical-centering-font-regexp",
2218 Vvertical_centering_font_regexp,
2219 doc: /* Regexp matching font names that require vertical centering on display.
2220 When a character is displayed with such fonts, the character is displayed
2221 at the vertical center of lines. */);
2222 Vvertical_centering_font_regexp = Qnil;
2224 DEFVAR_LISP ("otf-script-alist", Votf_script_alist,
2225 doc: /* Alist of OpenType script tags vs the corresponding script names. */);
2226 Votf_script_alist = Qnil;
2228 defsubr (&Squery_fontset);
2229 defsubr (&Snew_fontset);
2230 defsubr (&Sset_fontset_font);
2231 defsubr (&Sinternal_char_font);
2232 defsubr (&Sfontset_info);
2233 defsubr (&Sfontset_font);
2234 defsubr (&Sfontset_list);
2235 #ifdef ENABLE_CHECKING
2236 defsubr (&Sfontset_list_all);
2237 #endif