3 Copyright (C) 2001-2013 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/>. */
31 #include "blockinput.h"
32 #include "character.h"
38 #include "dispextern.h"
39 #include "intervals.h"
51 #include "termhooks.h"
57 A fontset is a collection of font related information to give
58 similar appearance (style, etc) of characters. A fontset has two
59 roles. One is to use for the frame parameter `font' as if it is an
60 ASCII font. In that case, Emacs uses the font specified for
61 `ascii' script for the frame's default font.
63 Another role, the more important one, is to provide information
64 about which font to use for each non-ASCII character.
66 There are two kinds of fontsets; base and realized. A base fontset
67 is created by `new-fontset' from Emacs Lisp explicitly. A realized
68 fontset is created implicitly when a face is realized for ASCII
69 characters. A face is also realized for non-ASCII characters based
70 on an ASCII face. All of non-ASCII faces based on the same ASCII
71 face share the same realized fontset.
73 A fontset object is implemented by a char-table whose default value
74 and parent are always nil.
76 An element of a base fontset is a vector of FONT-DEFs which itself
77 is a vector [ FONT-SPEC ENCODING REPERTORY ].
79 An element of a realized fontset is nil, t, 0, or a vector of this
82 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
83 RFONT-DEF0 RFONT-DEF1 ... ]
85 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
87 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
89 RFONT-DEFn are automatically reordered by the current charset
92 The value nil means that we have not yet generated the above vector
93 from the base of the fontset.
95 The value t means that no font is available for the corresponding
98 The value 0 means that no font is available for the corresponding
99 range of characters in this fontset, but may be available in the
103 A fontset has 9 extra slots.
105 The 1st slot: the ID number of the fontset
108 base: the name of the fontset
113 realized: the base fontset
117 realized: the frame that the fontset belongs to
120 base: the font name for ASCII characters
125 realized: the ID number of a face to use for characters that
126 has no font in a realized fontset.
130 realized: Alist of font index vs the corresponding repertory
135 realized: If the base is not the default fontset, a fontset
136 realized from the default fontset, else nil.
139 base: Same as element value (but for fallback fonts).
142 All fontsets are recorded in the vector Vfontset_table.
147 There's a special base fontset named `default fontset' which
148 defines the default font specifications. When a base fontset
149 doesn't specify a font for a specific character, the corresponding
150 value in the default fontset is used.
152 The parent of a realized fontset created for such a face that has
153 no fontset is the default fontset.
156 These structures are hidden from the other codes than this file.
157 The other codes handle fontsets only by their ID numbers. They
158 usually use the variable name `fontset' for IDs. But, in this
159 file, we always use variable name `id' for IDs, and name `fontset'
160 for an actual fontset object, i.e., char-table.
164 /********** VARIABLES and FUNCTION PROTOTYPES **********/
166 static Lisp_Object Qfontset
;
167 static Lisp_Object Qfontset_info
;
168 static Lisp_Object Qprepend
, Qappend
;
171 /* Vector containing all fontsets. */
172 static Lisp_Object Vfontset_table
;
174 /* Next possibly free fontset ID. Usually this keeps the minimum
175 fontset ID not yet used. */
176 static int next_fontset_id
;
178 /* The default fontset. This gives default FAMILY and REGISTRY of
179 font for each character. */
180 static Lisp_Object Vdefault_fontset
;
182 /* Prototype declarations for static functions. */
183 static Lisp_Object
make_fontset (Lisp_Object
, Lisp_Object
, Lisp_Object
);
185 /* Return true if ID is a valid fontset id.
186 Optimized away if ENABLE_CHECKING is not defined. */
189 fontset_id_valid_p (int id
)
191 return (id
>= 0 && id
< ASIZE (Vfontset_table
) - 1);
196 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
198 /* Return the fontset with ID. No check of ID's validness. */
199 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
201 /* Access special values of FONTSET. */
203 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
205 set_fontset_id (Lisp_Object fontset
, Lisp_Object id
)
207 set_char_table_extras (fontset
, 0, id
);
210 /* Access special values of (base) FONTSET. */
212 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
214 set_fontset_name (Lisp_Object fontset
, Lisp_Object name
)
216 set_char_table_extras (fontset
, 1, name
);
219 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
221 set_fontset_ascii (Lisp_Object fontset
, Lisp_Object ascii
)
223 set_char_table_extras (fontset
, 4, ascii
);
226 /* Access special values of (realized) FONTSET. */
228 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
230 set_fontset_base (Lisp_Object fontset
, Lisp_Object base
)
232 set_char_table_extras (fontset
, 2, base
);
235 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
237 set_fontset_frame (Lisp_Object fontset
, Lisp_Object frame
)
239 set_char_table_extras (fontset
, 3, frame
);
242 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
244 set_fontset_nofont_face (Lisp_Object fontset
, Lisp_Object face
)
246 set_char_table_extras (fontset
, 5, face
);
249 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
251 set_fontset_default (Lisp_Object fontset
, Lisp_Object def
)
253 set_char_table_extras (fontset
, 7, def
);
256 /* For both base and realized fontset. */
258 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
260 set_fontset_fallback (Lisp_Object fontset
, Lisp_Object fallback
)
262 set_char_table_extras (fontset
, 8, fallback
);
265 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
267 /* Macros for FONT-DEF and RFONT-DEF of fontset. */
268 #define FONT_DEF_NEW(font_def, font_spec, encoding, repertory) \
270 (font_def) = make_uninit_vector (3); \
271 ASET ((font_def), 0, font_spec); \
272 ASET ((font_def), 1, encoding); \
273 ASET ((font_def), 2, repertory); \
276 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
277 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
278 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
280 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
281 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
282 ASET ((rfont_def), 0, make_number (face_id))
283 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
284 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (AREF (rfont_def, 1))
285 #define RFONT_DEF_OBJECT(rfont_def) AREF (rfont_def, 2)
286 #define RFONT_DEF_SET_OBJECT(rfont_def, object) \
287 ASET ((rfont_def), 2, (object))
288 /* Score of RFONT_DEF is an integer value; the lowest 8 bits represent
289 the order of listing by font backends, the higher bits represents
290 the order given by charset priority list. The smaller value is
292 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
293 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
294 ASET ((rfont_def), 3, make_number (score))
295 #define RFONT_DEF_NEW(rfont_def, font_def) \
297 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
298 ASET ((rfont_def), 1, (font_def)); \
299 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
303 /* Return the element of FONTSET for the character C. If FONTSET is a
304 base fontset other then the default fontset and FONTSET doesn't
305 contain information for C, return the information in the default
308 #define FONTSET_REF(fontset, c) \
309 (EQ (fontset, Vdefault_fontset) \
310 ? CHAR_TABLE_REF (fontset, c) \
311 : fontset_ref ((fontset), (c)))
314 fontset_ref (Lisp_Object fontset
, int c
)
318 elt
= CHAR_TABLE_REF (fontset
, c
);
319 if (NILP (elt
) && ! EQ (fontset
, Vdefault_fontset
)
320 /* Don't check Vdefault_fontset for a realized fontset. */
321 && NILP (FONTSET_BASE (fontset
)))
322 elt
= CHAR_TABLE_REF (Vdefault_fontset
, c
);
326 /* Set elements of FONTSET for characters in RANGE to the value ELT.
327 RANGE is a cons (FROM . TO), where FROM and TO are character codes
328 specifying a range. */
330 #define FONTSET_SET(fontset, range, elt) \
331 Fset_char_table_range ((fontset), (range), (elt))
334 /* Modify the elements of FONTSET for characters in RANGE by replacing
335 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
336 and TO are character codes specifying a range. If ADD is nil,
337 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
340 #define FONTSET_ADD(fontset, range, elt, add) \
343 ? (set_fontset_fallback \
344 (fontset, Fmake_vector (make_number (1), (elt)))) \
346 Fset_char_table_range (fontset, range, \
347 Fmake_vector (make_number (1), elt)))) \
348 : fontset_add ((fontset), (range), (elt), (add)))
351 fontset_add (Lisp_Object fontset
, Lisp_Object range
, Lisp_Object elt
, Lisp_Object add
)
354 int idx
= (EQ (add
, Qappend
) ? 0 : 1);
356 args
[1 - idx
] = Fmake_vector (make_number (1), elt
);
360 int from
= XINT (XCAR (range
));
361 int to
= XINT (XCDR (range
));
365 from1
= from
, to1
= to
;
366 args
[idx
] = char_table_ref_and_range (fontset
, from
, &from1
, &to1
);
367 char_table_set_range (fontset
, from
, to1
,
368 NILP (args
[idx
]) ? args
[1 - idx
]
369 : Fvconcat (2, args
));
375 args
[idx
] = FONTSET_FALLBACK (fontset
);
377 (fontset
, NILP (args
[idx
]) ? args
[1 - idx
] : Fvconcat (2, args
));
382 fontset_compare_rfontdef (const void *val1
, const void *val2
)
384 return (RFONT_DEF_SCORE (*(Lisp_Object
*) val1
)
385 - RFONT_DEF_SCORE (*(Lisp_Object
*) val2
));
388 /* Update FONT-GROUP which has this form:
389 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
390 RFONT-DEF0 RFONT-DEF1 ... ]
391 Reorder RFONT-DEFs according to the current language, and update
392 CHARSET-ORDERED-LIST-TICK.
394 If PREFERRED_FAMILY is not nil, that family has the higher priority
395 if the encoding charsets or languages in font-specs are the same. */
398 reorder_font_vector (Lisp_Object font_group
, struct font
*font
)
400 Lisp_Object vec
, font_object
;
403 bool score_changed
= 0;
406 XSETFONT (font_object
, font
);
410 vec
= XCDR (font_group
);
412 /* Exclude the tailing nil element from the reordering. */
413 if (NILP (AREF (vec
, size
- 1)))
416 for (i
= 0; i
< size
; i
++)
418 Lisp_Object rfont_def
= AREF (vec
, i
);
419 Lisp_Object font_def
= RFONT_DEF_FONT_DEF (rfont_def
);
420 Lisp_Object font_spec
= FONT_DEF_SPEC (font_def
);
421 int score
= RFONT_DEF_SCORE (rfont_def
) & 0xFF;
422 Lisp_Object otf_spec
= Ffont_get (font_spec
, QCotf
);
424 if (! NILP (otf_spec
))
425 /* A font-spec with :otf is preferable regardless of encoding
428 else if (! font_match_p (font_spec
, font_object
))
430 Lisp_Object encoding
= FONT_DEF_ENCODING (font_def
);
432 if (! NILP (encoding
))
436 for (tail
= Vcharset_ordered_list
;
437 ! EQ (tail
, Vcharset_non_preferred_head
) && CONSP (tail
);
439 if (EQ (encoding
, XCAR (tail
)))
441 else if (score
<= min (INT_MAX
, MOST_POSITIVE_FIXNUM
) - 0x100)
446 Lisp_Object lang
= Ffont_get (font_spec
, QClang
);
449 && ! EQ (lang
, Vcurrent_iso639_language
)
450 && (! CONSP (Vcurrent_iso639_language
)
451 || NILP (Fmemq (lang
, Vcurrent_iso639_language
))))
455 if (RFONT_DEF_SCORE (rfont_def
) != score
)
457 RFONT_DEF_SET_SCORE (rfont_def
, score
);
463 qsort (XVECTOR (vec
)->contents
, size
, word_size
,
464 fontset_compare_rfontdef
);
465 XSETCAR (font_group
, make_number (charset_ordered_list_tick
));
468 /* Return a font-group (actually a cons (-1 . FONT-GROUP-VECTOR)) for
469 character C in FONTSET. If C is -1, return a fallback font-group.
470 If C is not -1, the value may be Qt (FONTSET doesn't have a font
471 for C even in the fallback group), or 0 (a font for C may be found
472 only in the fallback group). */
475 fontset_get_font_group (Lisp_Object fontset
, int c
)
477 Lisp_Object font_group
;
478 Lisp_Object base_fontset
;
479 int from
= 0, to
= MAX_CHAR
, i
;
481 eassert (! BASE_FONTSET_P (fontset
));
483 font_group
= CHAR_TABLE_REF (fontset
, c
);
485 font_group
= FONTSET_FALLBACK (fontset
);
486 if (! NILP (font_group
))
488 base_fontset
= FONTSET_BASE (fontset
);
489 if (NILP (base_fontset
))
492 font_group
= char_table_ref_and_range (base_fontset
, c
, &from
, &to
);
494 font_group
= FONTSET_FALLBACK (base_fontset
);
495 if (NILP (font_group
))
497 font_group
= make_number (0);
499 char_table_set_range (fontset
, from
, to
, font_group
);
502 if (!VECTORP (font_group
))
504 font_group
= Fcopy_sequence (font_group
);
505 for (i
= 0; i
< ASIZE (font_group
); i
++)
506 if (! NILP (AREF (font_group
, i
)))
508 Lisp_Object rfont_def
;
510 RFONT_DEF_NEW (rfont_def
, AREF (font_group
, i
));
511 /* Remember the original order. */
512 RFONT_DEF_SET_SCORE (rfont_def
, i
);
513 ASET (font_group
, i
, rfont_def
);
515 font_group
= Fcons (make_number (-1), font_group
);
517 char_table_set_range (fontset
, from
, to
, font_group
);
519 set_fontset_fallback (fontset
, font_group
);
523 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
524 character C. If no font is found, return Qnil if there's a
525 possibility that the default fontset or the fallback font groups
526 have a proper font, and return Qt if not.
528 If a font is found but is not yet opened, open it (if FACE is not
529 NULL) or return Qnil (if FACE is NULL).
531 ID is a charset-id that must be preferred, or -1 meaning no
534 If FALLBACK, search only fallback fonts. */
537 fontset_find_font (Lisp_Object fontset
, int c
, struct face
*face
, int id
,
540 Lisp_Object vec
, font_group
;
541 int i
, charset_matched
= 0, found_index
;
542 struct frame
*f
= (FRAMEP (FONTSET_FRAME (fontset
))
543 ? XFRAME (FONTSET_FRAME (fontset
))
544 : XFRAME (selected_frame
));
545 Lisp_Object rfont_def
;
547 font_group
= fontset_get_font_group (fontset
, fallback
? -1 : c
);
548 if (! CONSP (font_group
))
550 vec
= XCDR (font_group
);
551 if (ASIZE (vec
) == 0)
556 if (XINT (XCAR (font_group
)) != charset_ordered_list_tick
)
557 /* We have just created the font-group,
558 or the charset priorities were changed. */
559 reorder_font_vector (font_group
, face
->ascii_face
->font
);
561 /* Find a spec matching with the charset ID to try at
563 for (i
= 0; i
< ASIZE (vec
); i
++)
565 Lisp_Object repertory
;
567 rfont_def
= AREF (vec
, i
);
568 if (NILP (rfont_def
))
570 repertory
= FONT_DEF_REPERTORY (RFONT_DEF_FONT_DEF (rfont_def
));
572 if (XINT (repertory
) == id
)
580 /* Find the first available font in the vector of RFONT-DEF. */
581 for (i
= 0; i
< ASIZE (vec
); i
++)
583 Lisp_Object font_def
;
584 Lisp_Object font_entity
, font_object
;
589 if (charset_matched
> 0)
591 /* Try the element matching with the charset ID at first. */
592 found_index
= charset_matched
;
593 /* Make this negative so that we don't come here in the
595 charset_matched
= - charset_matched
;
596 /* We must try the first element in the next loop. */
600 else if (i
== - charset_matched
)
602 /* We have already tried this element and the followings
603 that have the same font specifications in the first
604 iteration. So, skip them all. */
605 rfont_def
= AREF (vec
, i
);
606 font_def
= RFONT_DEF_FONT_DEF (rfont_def
);
607 for (; i
+ 1 < ASIZE (vec
); i
++)
609 rfont_def
= AREF (vec
, i
+ 1);
610 if (NILP (rfont_def
))
612 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def
), font_def
))
618 rfont_def
= AREF (vec
, found_index
);
619 if (NILP (rfont_def
))
623 /* This is a sign of not to try the other fonts. */
626 if (INTEGERP (RFONT_DEF_FACE (rfont_def
))
627 && XINT (RFONT_DEF_FACE (rfont_def
)) < 0)
628 /* We couldn't open this font last time. */
631 font_object
= RFONT_DEF_OBJECT (rfont_def
);
632 if (NILP (font_object
))
634 font_def
= RFONT_DEF_FONT_DEF (rfont_def
);
637 /* We have not yet opened the font. */
639 /* Find a font best-matching with the spec without checking
640 the support of the character C. That checking is costly,
641 and even without the checking, the found font supports C
642 in high possibility. */
643 font_entity
= font_find_for_lface (f
, face
->lface
,
644 FONT_DEF_SPEC (font_def
), -1);
645 if (NILP (font_entity
))
647 /* Record that no font matches the spec. */
648 RFONT_DEF_SET_FACE (rfont_def
, -1);
651 font_object
= font_open_for_lface (f
, font_entity
, face
->lface
,
652 FONT_DEF_SPEC (font_def
));
653 if (NILP (font_object
))
655 /* Something strange happened, perhaps because of a
656 Font-backend problem. Too avoid crashing, record
657 that this spec is unusable. It may be better to find
658 another font of the same spec, but currently we don't
660 RFONT_DEF_SET_FACE (rfont_def
, -1);
663 RFONT_DEF_SET_OBJECT (rfont_def
, font_object
);
666 if (font_has_char (f
, font_object
, c
))
669 /* Find a font already opened, matching with the current spec,
671 font_def
= RFONT_DEF_FONT_DEF (rfont_def
);
672 for (; found_index
+ 1 < ASIZE (vec
); found_index
++)
674 rfont_def
= AREF (vec
, found_index
+ 1);
675 if (NILP (rfont_def
))
677 if (! EQ (RFONT_DEF_FONT_DEF (rfont_def
), font_def
))
679 font_object
= RFONT_DEF_OBJECT (rfont_def
);
680 if (! NILP (font_object
) && font_has_char (f
, font_object
, c
))
687 /* Find a font-entity with the current spec and supporting C. */
688 font_entity
= font_find_for_lface (f
, face
->lface
,
689 FONT_DEF_SPEC (font_def
), c
);
690 if (! NILP (font_entity
))
692 /* We found a font. Open it and insert a new element for
697 font_object
= font_open_for_lface (f
, font_entity
, face
->lface
,
699 if (NILP (font_object
))
701 RFONT_DEF_NEW (rfont_def
, font_def
);
702 RFONT_DEF_SET_OBJECT (rfont_def
, font_object
);
703 RFONT_DEF_SET_SCORE (rfont_def
, RFONT_DEF_SCORE (rfont_def
));
704 new_vec
= Fmake_vector (make_number (ASIZE (vec
) + 1), Qnil
);
706 for (j
= 0; j
< found_index
; j
++)
707 ASET (new_vec
, j
, AREF (vec
, j
));
708 ASET (new_vec
, j
, rfont_def
);
709 for (j
++; j
< ASIZE (new_vec
); j
++)
710 ASET (new_vec
, j
, AREF (vec
, j
- 1));
711 XSETCDR (font_group
, new_vec
);
719 FONTSET_SET (fontset
, make_number (c
), make_number (0));
723 if (fallback
&& found_index
> 0)
725 /* The order of fonts in the fallback font-group is not that
726 important, and it is better to move the found font to the
727 first of the group so that the next try will find it
729 for (i
= found_index
; i
> 0; i
--)
730 ASET (vec
, i
, AREF (vec
, i
- 1));
731 ASET (vec
, 0, rfont_def
);
738 fontset_font (Lisp_Object fontset
, int c
, struct face
*face
, int id
)
740 Lisp_Object rfont_def
, default_rfont_def
IF_LINT (= Qnil
);
741 Lisp_Object base_fontset
;
743 /* Try a font-group of FONTSET. */
744 FONT_DEFERRED_LOG ("current fontset: font for", make_number (c
), Qnil
);
745 rfont_def
= fontset_find_font (fontset
, c
, face
, id
, 0);
746 if (VECTORP (rfont_def
))
748 if (NILP (rfont_def
))
749 FONTSET_SET (fontset
, make_number (c
), make_number (0));
751 /* Try a font-group of the default fontset. */
752 base_fontset
= FONTSET_BASE (fontset
);
753 if (! EQ (base_fontset
, Vdefault_fontset
))
755 if (NILP (FONTSET_DEFAULT (fontset
)))
758 make_fontset (FONTSET_FRAME (fontset
), Qnil
, Vdefault_fontset
));
759 FONT_DEFERRED_LOG ("default fontset: font for", make_number (c
), Qnil
);
761 = fontset_find_font (FONTSET_DEFAULT (fontset
), c
, face
, id
, 0);
762 if (VECTORP (default_rfont_def
))
763 return default_rfont_def
;
764 if (NILP (default_rfont_def
))
765 FONTSET_SET (FONTSET_DEFAULT (fontset
), make_number (c
),
769 /* Try a fallback font-group of FONTSET. */
770 if (! EQ (rfont_def
, Qt
))
772 FONT_DEFERRED_LOG ("current fallback: font for", make_number (c
), Qnil
);
773 rfont_def
= fontset_find_font (fontset
, c
, face
, id
, 1);
774 if (VECTORP (rfont_def
))
776 /* Remember that FONTSET has no font for C. */
777 FONTSET_SET (fontset
, make_number (c
), Qt
);
780 /* Try a fallback font-group of the default fontset. */
781 if (! EQ (base_fontset
, Vdefault_fontset
)
782 && ! EQ (default_rfont_def
, Qt
))
784 FONT_DEFERRED_LOG ("default fallback: font for", make_number (c
), Qnil
);
785 rfont_def
= fontset_find_font (FONTSET_DEFAULT (fontset
), c
, face
, id
, 1);
786 if (VECTORP (rfont_def
))
788 /* Remember that the default fontset has no font for C. */
789 FONTSET_SET (FONTSET_DEFAULT (fontset
), make_number (c
), Qt
);
795 /* Return a newly created fontset with NAME. If BASE is nil, make a
796 base fontset. Otherwise make a realized fontset whose base is
800 make_fontset (Lisp_Object frame
, Lisp_Object name
, Lisp_Object base
)
803 int size
= ASIZE (Vfontset_table
);
804 int id
= next_fontset_id
;
806 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
807 the next available fontset ID. So it is expected that this loop
808 terminates quickly. In addition, as the last element of
809 Vfontset_table is always nil, we don't have to check the range of
811 while (!NILP (AREF (Vfontset_table
, id
))) id
++;
814 Vfontset_table
= larger_vector (Vfontset_table
, 1, -1);
816 fontset
= Fmake_char_table (Qfontset
, Qnil
);
818 set_fontset_id (fontset
, make_number (id
));
820 set_fontset_name (fontset
, name
);
823 set_fontset_name (fontset
, Qnil
);
824 set_fontset_frame (fontset
, frame
);
825 set_fontset_base (fontset
, base
);
828 ASET (Vfontset_table
, id
, fontset
);
829 next_fontset_id
= id
+ 1;
834 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
836 /* Return the name of the fontset who has ID. */
839 fontset_name (int id
)
843 fontset
= FONTSET_FROM_ID (id
);
844 return FONTSET_NAME (fontset
);
848 /* Return the ASCII font name of the fontset who has ID. */
851 fontset_ascii (int id
)
853 Lisp_Object fontset
, elt
;
855 fontset
= FONTSET_FROM_ID (id
);
856 elt
= FONTSET_ASCII (fontset
);
863 free_realized_fontset (struct frame
*f
, Lisp_Object fontset
)
869 for (tail
= FONTSET_OBJLIST (fontset
); CONSP (tail
); tail
= XCDR (tail
))
871 eassert (FONT_OBJECT_P (XCAR (tail
)));
872 font_close_object (f
, XCAR (tail
));
877 /* Free fontset of FACE defined on frame F. Called from
878 free_realized_face. */
881 free_face_fontset (struct frame
*f
, struct face
*face
)
885 fontset
= FONTSET_FROM_ID (face
->fontset
);
888 eassert (! BASE_FONTSET_P (fontset
));
889 eassert (f
== XFRAME (FONTSET_FRAME (fontset
)));
890 free_realized_fontset (f
, fontset
);
891 ASET (Vfontset_table
, face
->fontset
, Qnil
);
892 if (face
->fontset
< next_fontset_id
)
893 next_fontset_id
= face
->fontset
;
894 if (! NILP (FONTSET_DEFAULT (fontset
)))
896 int id
= XINT (FONTSET_ID (FONTSET_DEFAULT (fontset
)));
898 fontset
= AREF (Vfontset_table
, id
);
899 eassert (!NILP (fontset
) && ! BASE_FONTSET_P (fontset
));
900 eassert (f
== XFRAME (FONTSET_FRAME (fontset
)));
901 free_realized_fontset (f
, fontset
);
902 ASET (Vfontset_table
, id
, Qnil
);
903 if (id
< next_fontset_id
)
904 next_fontset_id
= face
->fontset
;
911 /* Return true if FACE is suitable for displaying character C.
912 Called from the macro FACE_SUITABLE_FOR_CHAR_P
913 when C is not an ASCII character. */
916 face_suitable_for_char_p (struct face
*face
, int c
)
918 Lisp_Object fontset
, rfont_def
;
920 fontset
= FONTSET_FROM_ID (face
->fontset
);
921 rfont_def
= fontset_font (fontset
, c
, NULL
, -1);
922 return (VECTORP (rfont_def
)
923 && INTEGERP (RFONT_DEF_FACE (rfont_def
))
924 && face
->id
== XINT (RFONT_DEF_FACE (rfont_def
)));
929 /* Return ID of face suitable for displaying character C on frame F.
930 FACE must be realized for ASCII characters in advance. Called from
931 the macro FACE_FOR_CHAR. */
934 face_for_char (struct frame
*f
, struct face
*face
, int c
, int pos
, Lisp_Object object
)
936 Lisp_Object fontset
, rfont_def
, charset
;
940 /* If face->fontset is negative (that happens when no font is found
941 for face), just return face->ascii_face because we can't do
942 anything. Perhaps, we should fix the callers to assure
943 that face->fontset is always valid. */
944 if (ASCII_CHAR_P (c
) || face
->fontset
< 0)
945 return face
->ascii_face
->id
;
950 /* Fonts often have characters in other scripts, like symbol, even if they
951 don't match script: symbol. So check if the character is present
952 in the current face first. Only enable for NS for now, but should
953 perhaps be general? */
954 Lisp_Object font_object
;
955 XSETFONT (font_object
, face
->font
);
956 if (font_has_char (f
, font_object
, c
)) return face
->id
;
960 eassert (fontset_id_valid_p (face
->fontset
));
961 fontset
= FONTSET_FROM_ID (face
->fontset
);
962 eassert (!BASE_FONTSET_P (fontset
));
971 charset
= Fget_char_property (make_number (pos
), Qcharset
, object
);
972 if (CHARSETP (charset
))
976 val
= assq_no_quit (charset
, Vfont_encoding_charset_alist
);
977 if (CONSP (val
) && CHARSETP (XCDR (val
)))
978 charset
= XCDR (val
);
979 id
= XINT (CHARSET_SYMBOL_ID (charset
));
985 rfont_def
= fontset_font (fontset
, c
, face
, id
);
986 if (VECTORP (rfont_def
))
988 if (INTEGERP (RFONT_DEF_FACE (rfont_def
)))
989 face_id
= XINT (RFONT_DEF_FACE (rfont_def
));
992 Lisp_Object font_object
;
994 font_object
= RFONT_DEF_OBJECT (rfont_def
);
995 face_id
= face_for_font (f
, font_object
, face
);
996 RFONT_DEF_SET_FACE (rfont_def
, face_id
);
1001 if (INTEGERP (FONTSET_NOFONT_FACE (fontset
)))
1002 face_id
= XINT (FONTSET_NOFONT_FACE (fontset
));
1005 face_id
= face_for_font (f
, Qnil
, face
);
1006 set_fontset_nofont_face (fontset
, make_number (face_id
));
1009 eassert (face_id
>= 0);
1015 font_for_char (struct face
*face
, int c
, int pos
, Lisp_Object object
)
1017 Lisp_Object fontset
, rfont_def
, charset
;
1020 if (ASCII_CHAR_P (c
))
1022 Lisp_Object font_object
;
1024 XSETFONT (font_object
, face
->ascii_face
->font
);
1028 eassert (fontset_id_valid_p (face
->fontset
));
1029 fontset
= FONTSET_FROM_ID (face
->fontset
);
1030 eassert (!BASE_FONTSET_P (fontset
));
1038 charset
= Fget_char_property (make_number (pos
), Qcharset
, object
);
1039 if (CHARSETP (charset
))
1043 val
= assq_no_quit (charset
, Vfont_encoding_charset_alist
);
1044 if (CONSP (val
) && CHARSETP (XCDR (val
)))
1045 charset
= XCDR (val
);
1046 id
= XINT (CHARSET_SYMBOL_ID (charset
));
1052 rfont_def
= fontset_font (fontset
, c
, face
, id
);
1053 return (VECTORP (rfont_def
)
1054 ? RFONT_DEF_OBJECT (rfont_def
)
1059 /* Make a realized fontset for ASCII face FACE on frame F from the
1060 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
1061 default fontset as the base. Value is the id of the new fontset.
1062 Called from realize_x_face. */
1065 make_fontset_for_ascii_face (struct frame
*f
, int base_fontset_id
, struct face
*face
)
1067 Lisp_Object base_fontset
, fontset
, frame
;
1069 XSETFRAME (frame
, f
);
1070 if (base_fontset_id
>= 0)
1072 base_fontset
= FONTSET_FROM_ID (base_fontset_id
);
1073 if (!BASE_FONTSET_P (base_fontset
))
1074 base_fontset
= FONTSET_BASE (base_fontset
);
1075 eassert (BASE_FONTSET_P (base_fontset
));
1078 base_fontset
= Vdefault_fontset
;
1080 fontset
= make_fontset (frame
, Qnil
, base_fontset
);
1081 return XINT (FONTSET_ID (fontset
));
1086 /* Cache data used by fontset_pattern_regexp. The car part is a
1087 pattern string containing at least one wild card, the cdr part is
1088 the corresponding regular expression. */
1089 static Lisp_Object Vcached_fontset_data
;
1091 #define CACHED_FONTSET_NAME SSDATA (XCAR (Vcached_fontset_data))
1092 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
1094 /* If fontset name PATTERN contains any wild card, return regular
1095 expression corresponding to PATTERN. */
1098 fontset_pattern_regexp (Lisp_Object pattern
)
1100 if (!strchr (SSDATA (pattern
), '*')
1101 && !strchr (SSDATA (pattern
), '?'))
1102 /* PATTERN does not contain any wild cards. */
1105 if (!CONSP (Vcached_fontset_data
)
1106 || strcmp (SSDATA (pattern
), CACHED_FONTSET_NAME
))
1108 /* We must at first update the cached data. */
1109 unsigned char *regex
, *p0
, *p1
;
1110 int ndashes
= 0, nstars
= 0, nescs
= 0;
1112 for (p0
= SDATA (pattern
); *p0
; p0
++)
1116 else if (*p0
== '*')
1119 || *p0
== '.' || *p0
== '\\'
1120 || *p0
== '+' || *p0
== '^'
1125 /* If PATTERN is not full XLFD we convert "*" to ".*". Otherwise
1126 we convert "*" to "[^-]*" which is much faster in regular
1127 expression matching. */
1129 p1
= regex
= alloca (SBYTES (pattern
) + 2 * nstars
+ 2 * nescs
+ 1);
1131 p1
= regex
= alloca (SBYTES (pattern
) + 5 * nstars
+ 2 * nescs
+ 1);
1134 for (p0
= SDATA (pattern
); *p0
; p0
++)
1141 *p1
++ = '[', *p1
++ = '^', *p1
++ = '-', *p1
++ = ']';
1144 else if (*p0
== '?')
1147 || *p0
== '.' || *p0
== '\\'
1148 || *p0
== '+' || *p0
== '^'
1150 *p1
++ = '\\', *p1
++ = *p0
;
1157 Vcached_fontset_data
= Fcons (build_string (SSDATA (pattern
)),
1158 build_string ((char *) regex
));
1161 return CACHED_FONTSET_REGEX
;
1164 /* Return ID of the base fontset named NAME. If there's no such
1165 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1166 0: pattern containing '*' and '?' as wildcards
1167 1: regular expression
1168 2: literal fontset name
1172 fs_query_fontset (Lisp_Object name
, int name_pattern
)
1177 name
= Fdowncase (name
);
1178 if (name_pattern
!= 1)
1180 tem
= Frassoc (name
, Vfontset_alias_alist
);
1182 tem
= Fassoc (name
, Vfontset_alias_alist
);
1183 if (CONSP (tem
) && STRINGP (XCAR (tem
)))
1185 else if (name_pattern
== 0)
1187 tem
= fontset_pattern_regexp (name
);
1196 for (i
= 0; i
< ASIZE (Vfontset_table
); i
++)
1198 Lisp_Object fontset
, this_name
;
1200 fontset
= FONTSET_FROM_ID (i
);
1202 || !BASE_FONTSET_P (fontset
))
1205 this_name
= FONTSET_NAME (fontset
);
1206 if (name_pattern
== 1
1207 ? fast_string_match_ignore_case (name
, this_name
) >= 0
1208 : !xstrcasecmp (SSDATA (name
), SSDATA (this_name
)))
1215 DEFUN ("query-fontset", Fquery_fontset
, Squery_fontset
, 1, 2, 0,
1216 doc
: /* Return the name of a fontset that matches PATTERN.
1217 The value is nil if there is no matching fontset.
1218 PATTERN can contain `*' or `?' as a wildcard
1219 just as X font name matching algorithm allows.
1220 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1221 (Lisp_Object pattern
, Lisp_Object regexpp
)
1223 Lisp_Object fontset
;
1226 check_window_system (NULL
);
1228 CHECK_STRING (pattern
);
1230 if (SCHARS (pattern
) == 0)
1233 id
= fs_query_fontset (pattern
, !NILP (regexpp
));
1237 fontset
= FONTSET_FROM_ID (id
);
1238 return FONTSET_NAME (fontset
);
1241 /* Return a list of base fontset names matching PATTERN on frame F. */
1244 list_fontsets (struct frame
*f
, Lisp_Object pattern
, int size
)
1246 Lisp_Object frame
, regexp
, val
;
1249 XSETFRAME (frame
, f
);
1251 regexp
= fontset_pattern_regexp (pattern
);
1254 for (id
= 0; id
< ASIZE (Vfontset_table
); id
++)
1256 Lisp_Object fontset
, name
;
1258 fontset
= FONTSET_FROM_ID (id
);
1260 || !BASE_FONTSET_P (fontset
)
1261 || !EQ (frame
, FONTSET_FRAME (fontset
)))
1263 name
= FONTSET_NAME (fontset
);
1265 if (STRINGP (regexp
)
1266 ? (fast_string_match (regexp
, name
) < 0)
1267 : strcmp (SSDATA (pattern
), SSDATA (name
)))
1270 val
= Fcons (Fcopy_sequence (FONTSET_NAME (fontset
)), val
);
1277 /* Free all realized fontsets whose base fontset is BASE. */
1280 free_realized_fontsets (Lisp_Object base
)
1285 /* For the moment, this doesn't work because free_realized_face
1286 doesn't remove FACE from a cache. Until we find a solution, we
1287 suppress this code, and simply use Fclear_face_cache even though
1288 that is not efficient. */
1290 for (id
= 0; id
< ASIZE (Vfontset_table
); id
++)
1292 Lisp_Object
this = AREF (Vfontset_table
, id
);
1294 if (EQ (FONTSET_BASE (this), base
))
1298 for (tail
= FONTSET_FACE_ALIST (this); CONSP (tail
);
1301 struct frame
*f
= XFRAME (FONTSET_FRAME (this));
1302 int face_id
= XINT (XCDR (XCAR (tail
)));
1303 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1305 /* Face THIS itself is also freed by the following call. */
1306 free_realized_face (f
, face
);
1312 /* But, we don't have to call Fclear_face_cache if no fontset has
1313 been realized from BASE. */
1314 for (id
= 0; id
< ASIZE (Vfontset_table
); id
++)
1316 Lisp_Object
this = AREF (Vfontset_table
, id
);
1318 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base
))
1320 Fclear_face_cache (Qt
);
1328 /* Check validity of NAME as a fontset name and return the
1329 corresponding fontset. If not valid, signal an error.
1331 If NAME is t, return Vdefault_fontset. If NAME is nil, return the
1334 Set *FRAME to the actual frame. */
1337 check_fontset_name (Lisp_Object name
, Lisp_Object
*frame
)
1340 struct frame
*f
= decode_live_frame (*frame
);
1342 XSETFRAME (*frame
, f
);
1345 return Vdefault_fontset
;
1347 id
= FRAME_FONTSET (f
);
1350 CHECK_STRING (name
);
1351 /* First try NAME as literal. */
1352 id
= fs_query_fontset (name
, 2);
1354 /* For backward compatibility, try again NAME as pattern. */
1355 id
= fs_query_fontset (name
, 0);
1357 error ("Fontset `%s' does not exist", SDATA (name
));
1359 return FONTSET_FROM_ID (id
);
1363 accumulate_script_ranges (Lisp_Object arg
, Lisp_Object range
, Lisp_Object val
)
1365 if (EQ (XCAR (arg
), val
))
1368 XSETCDR (arg
, Fcons (Fcons (XCAR (range
), XCDR (range
)), XCDR (arg
)));
1370 XSETCDR (arg
, Fcons (Fcons (range
, range
), XCDR (arg
)));
1375 /* Callback function for map_charset_chars in Fset_fontset_font.
1376 ARG is a vector [ FONTSET FONT_DEF ADD ASCII SCRIPT_RANGE_LIST ].
1378 In FONTSET, set FONT_DEF in a fashion specified by ADD for
1379 characters in RANGE and ranges in SCRIPT_RANGE_LIST before RANGE.
1380 The consumed ranges are popped up from SCRIPT_RANGE_LIST, and the
1381 new SCRIPT_RANGE_LIST is stored in ARG.
1383 If ASCII is nil, don't set FONT_DEF for ASCII characters. It is
1384 assured that SCRIPT_RANGE_LIST doesn't contain ASCII in that
1388 set_fontset_font (Lisp_Object arg
, Lisp_Object range
)
1390 Lisp_Object fontset
, font_def
, add
, ascii
, script_range_list
;
1391 int from
= XINT (XCAR (range
)), to
= XINT (XCDR (range
));
1393 fontset
= AREF (arg
, 0);
1394 font_def
= AREF (arg
, 1);
1395 add
= AREF (arg
, 2);
1396 ascii
= AREF (arg
, 3);
1397 script_range_list
= AREF (arg
, 4);
1399 if (NILP (ascii
) && from
< 0x80)
1404 range
= Fcons (make_number (0x80), XCDR (range
));
1407 #define SCRIPT_FROM XINT (XCAR (XCAR (script_range_list)))
1408 #define SCRIPT_TO XINT (XCDR (XCAR (script_range_list)))
1409 #define POP_SCRIPT_RANGE() script_range_list = XCDR (script_range_list)
1411 for (; CONSP (script_range_list
) && SCRIPT_TO
< from
; POP_SCRIPT_RANGE ())
1412 FONTSET_ADD (fontset
, XCAR (script_range_list
), font_def
, add
);
1413 if (CONSP (script_range_list
))
1415 if (SCRIPT_FROM
< from
)
1416 range
= Fcons (make_number (SCRIPT_FROM
), XCDR (range
));
1417 while (CONSP (script_range_list
) && SCRIPT_TO
<= to
)
1418 POP_SCRIPT_RANGE ();
1419 if (CONSP (script_range_list
) && SCRIPT_FROM
<= to
)
1420 XSETCAR (XCAR (script_range_list
), make_number (to
+ 1));
1423 FONTSET_ADD (fontset
, range
, font_def
, add
);
1424 ASET (arg
, 4, script_range_list
);
1427 static void update_auto_fontset_alist (Lisp_Object
, Lisp_Object
);
1430 DEFUN ("set-fontset-font", Fset_fontset_font
, Sset_fontset_font
, 3, 5, 0,
1432 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1434 NAME is a fontset name string, nil for the fontset of FRAME, or t for
1435 the default fontset.
1437 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1438 In that case, use FONT-SPEC for all characters in the range FROM and
1441 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1442 all characters that belong to the script.
1444 TARGET may be a charset. In that case, use FONT-SPEC for all
1445 characters in the charset.
1447 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1448 that no FONT-SPEC is specified.
1450 FONT-SPEC may one of these:
1451 * A font-spec object made by the function `font-spec' (which see).
1452 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1453 REGISTRY is a font registry name. FAMILY may contain foundry
1454 name, and REGISTRY may contain encoding name.
1455 * A font name string.
1456 * nil, which explicitly specifies that there's no font for TARGET.
1458 Optional 4th argument FRAME is a frame or nil for the selected frame
1459 that is concerned in the case that NAME is nil.
1461 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1462 to the font specifications for TARGET previously set. If it is
1463 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1464 appended. By default, FONT-SPEC overrides the previous settings. */)
1465 (Lisp_Object name
, Lisp_Object target
, Lisp_Object font_spec
, Lisp_Object frame
, Lisp_Object add
)
1467 Lisp_Object fontset
;
1468 Lisp_Object font_def
, registry
, family
;
1469 Lisp_Object range_list
;
1470 struct charset
*charset
= NULL
;
1471 Lisp_Object fontname
;
1472 bool ascii_changed
= 0;
1474 fontset
= check_fontset_name (name
, &frame
);
1477 if (CONSP (font_spec
))
1479 Lisp_Object spec
= Ffont_spec (0, NULL
);
1481 font_parse_family_registry (XCAR (font_spec
), XCDR (font_spec
), spec
);
1483 fontname
= Ffont_xlfd_name (font_spec
, Qnil
);
1485 else if (STRINGP (font_spec
))
1487 Lisp_Object args
[2];
1489 fontname
= font_spec
;
1491 args
[1] = font_spec
;
1492 font_spec
= Ffont_spec (2, args
);
1494 else if (FONT_SPEC_P (font_spec
))
1495 fontname
= Ffont_xlfd_name (font_spec
, Qnil
);
1496 else if (! NILP (font_spec
))
1497 Fsignal (Qfont
, list2 (build_string ("Invalid font-spec"), font_spec
));
1499 if (! NILP (font_spec
))
1501 Lisp_Object encoding
, repertory
;
1503 family
= AREF (font_spec
, FONT_FAMILY_INDEX
);
1504 if (! NILP (family
) )
1505 family
= SYMBOL_NAME (family
);
1506 registry
= AREF (font_spec
, FONT_REGISTRY_INDEX
);
1507 if (! NILP (registry
))
1508 registry
= Fdowncase (SYMBOL_NAME (registry
));
1509 encoding
= find_font_encoding (concat3 (family
, build_string ("-"),
1511 if (NILP (encoding
))
1514 if (SYMBOLP (encoding
))
1516 CHECK_CHARSET (encoding
);
1517 encoding
= repertory
= CHARSET_SYMBOL_ID (encoding
);
1521 repertory
= XCDR (encoding
);
1522 encoding
= XCAR (encoding
);
1523 CHECK_CHARSET (encoding
);
1524 encoding
= CHARSET_SYMBOL_ID (encoding
);
1525 if (! NILP (repertory
) && SYMBOLP (repertory
))
1527 CHECK_CHARSET (repertory
);
1528 repertory
= CHARSET_SYMBOL_ID (repertory
);
1531 FONT_DEF_NEW (font_def
, font_spec
, encoding
, repertory
);
1536 if (CHARACTERP (target
))
1538 if (XFASTINT (target
) < 0x80)
1539 error ("Can't set a font for partial ASCII range");
1540 range_list
= list1 (Fcons (target
, target
));
1542 else if (CONSP (target
))
1544 Lisp_Object from
, to
;
1546 from
= Fcar (target
);
1548 CHECK_CHARACTER (from
);
1549 CHECK_CHARACTER (to
);
1550 if (XFASTINT (from
) < 0x80)
1552 if (XFASTINT (from
) != 0 || XFASTINT (to
) < 0x7F)
1553 error ("Can't set a font for partial ASCII range");
1556 range_list
= list1 (target
);
1558 else if (SYMBOLP (target
) && !NILP (target
))
1560 Lisp_Object script_list
;
1564 script_list
= XCHAR_TABLE (Vchar_script_table
)->extras
[0];
1565 if (! NILP (Fmemq (target
, script_list
)))
1567 if (EQ (target
, Qlatin
))
1569 val
= list1 (target
);
1570 map_char_table (accumulate_script_ranges
, Qnil
, Vchar_script_table
,
1572 range_list
= Fnreverse (XCDR (val
));
1574 if (CHARSETP (target
))
1576 CHECK_CHARSET_GET_CHARSET (target
, charset
);
1577 if (charset
->ascii_compatible_p
)
1580 else if (NILP (range_list
))
1581 error ("Invalid script or charset name: %s",
1582 SDATA (SYMBOL_NAME (target
)));
1584 else if (NILP (target
))
1585 range_list
= list1 (Qnil
);
1587 error ("Invalid target for setting a font");
1593 if (NILP (font_spec
))
1594 error ("Can't set ASCII font to nil");
1595 val
= CHAR_TABLE_REF (fontset
, 0);
1596 if (! NILP (val
) && EQ (add
, Qappend
))
1597 /* We are going to change just an additional font for ASCII. */
1605 arg
= make_uninit_vector (5);
1606 ASET (arg
, 0, fontset
);
1607 ASET (arg
, 1, font_def
);
1609 ASET (arg
, 3, ascii_changed
? Qt
: Qnil
);
1610 ASET (arg
, 4, range_list
);
1612 map_charset_chars (set_fontset_font
, Qnil
, arg
, charset
,
1613 CHARSET_MIN_CODE (charset
),
1614 CHARSET_MAX_CODE (charset
));
1615 range_list
= AREF (arg
, 4);
1617 for (; CONSP (range_list
); range_list
= XCDR (range_list
))
1618 FONTSET_ADD (fontset
, XCAR (range_list
), font_def
, add
);
1622 Lisp_Object tail
, fr
, alist
;
1623 int fontset_id
= XINT (FONTSET_ID (fontset
));
1625 set_fontset_ascii (fontset
, fontname
);
1626 name
= FONTSET_NAME (fontset
);
1627 FOR_EACH_FRAME (tail
, fr
)
1629 struct frame
*f
= XFRAME (fr
);
1630 Lisp_Object font_object
;
1633 if (FRAME_INITIAL_P (f
) || FRAME_TERMCAP_P (f
))
1635 if (fontset_id
!= FRAME_FONTSET (f
))
1637 face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
1639 font_object
= font_load_for_lface (f
, face
->lface
, font_spec
);
1641 font_object
= font_open_by_spec (f
, font_spec
);
1642 if (! NILP (font_object
))
1644 update_auto_fontset_alist (font_object
, fontset
);
1645 alist
= list1 (Fcons (Qfont
, Fcons (name
, font_object
)));
1646 Fmodify_frame_parameters (fr
, alist
);
1651 /* Free all realized fontsets whose base is FONTSET. This way, the
1652 specified character(s) are surely redisplayed by a correct
1654 free_realized_fontsets (fontset
);
1660 DEFUN ("new-fontset", Fnew_fontset
, Snew_fontset
, 2, 2, 0,
1661 doc
: /* Create a new fontset NAME from font information in FONTLIST.
1663 FONTLIST is an alist of scripts vs the corresponding font specification list.
1664 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1665 character of SCRIPT is displayed by a font that matches one of
1668 SCRIPT is a symbol that appears in the first extra slot of the
1669 char-table `char-script-table'.
1671 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1672 `set-fontset-font' for the meaning. */)
1673 (Lisp_Object name
, Lisp_Object fontlist
)
1675 Lisp_Object fontset
;
1678 CHECK_STRING (name
);
1679 CHECK_LIST (fontlist
);
1681 name
= Fdowncase (name
);
1682 id
= fs_query_fontset (name
, 0);
1685 Lisp_Object font_spec
= Ffont_spec (0, NULL
);
1686 Lisp_Object short_name
;
1690 if (font_parse_xlfd (SSDATA (name
), SBYTES (name
), font_spec
) < 0)
1691 error ("Fontset name must be in XLFD format");
1692 short_name
= AREF (font_spec
, FONT_REGISTRY_INDEX
);
1693 if (strncmp (SSDATA (SYMBOL_NAME (short_name
)), "fontset-", 8)
1694 || SBYTES (SYMBOL_NAME (short_name
)) < 9)
1695 error ("Registry field of fontset name must be \"fontset-*\"");
1696 Vfontset_alias_alist
= Fcons (Fcons (name
, SYMBOL_NAME (short_name
)),
1697 Vfontset_alias_alist
);
1698 ASET (font_spec
, FONT_REGISTRY_INDEX
, Qiso8859_1
);
1699 fontset
= make_fontset (Qnil
, name
, Qnil
);
1700 len
= font_unparse_xlfd (font_spec
, 0, xlfd
, 256);
1702 error ("Invalid fontset name (perhaps too long): %s", SDATA (name
));
1703 set_fontset_ascii (fontset
, make_unibyte_string (xlfd
, len
));
1707 fontset
= FONTSET_FROM_ID (id
);
1708 free_realized_fontsets (fontset
);
1709 Fset_char_table_range (fontset
, Qt
, Qnil
);
1712 for (; CONSP (fontlist
); fontlist
= XCDR (fontlist
))
1714 Lisp_Object elt
, script
;
1716 elt
= XCAR (fontlist
);
1717 script
= Fcar (elt
);
1719 if (CONSP (elt
) && (NILP (XCDR (elt
)) || CONSP (XCDR (elt
))))
1720 for (; CONSP (elt
); elt
= XCDR (elt
))
1721 Fset_fontset_font (name
, script
, XCAR (elt
), Qnil
, Qappend
);
1723 Fset_fontset_font (name
, script
, elt
, Qnil
, Qappend
);
1729 /* Alist of automatically created fontsets. Each element is a cons
1730 (FONT-SPEC . FONTSET-ID). */
1731 static Lisp_Object auto_fontset_alist
;
1733 /* Number of automatically created fontsets. */
1734 static ptrdiff_t num_auto_fontsets
;
1736 /* Return a fontset synthesized from FONT-OBJECT. This is called from
1737 x_new_font when FONT-OBJECT is used for the default ASCII font of a
1738 frame, and the returned fontset is used for the default fontset of
1739 that frame. The fontset specifies a font of the same registry as
1740 FONT-OBJECT for all characters in the repertory of the registry
1741 (see Vfont_encoding_alist). If the repertory is not known, the
1742 fontset specifies the font for all Latin characters assuming that a
1743 user intends to use FONT-OBJECT for Latin characters. */
1746 fontset_from_font (Lisp_Object font_object
)
1748 Lisp_Object font_name
= font_get_name (font_object
);
1749 Lisp_Object font_spec
= copy_font_spec (font_object
);
1750 Lisp_Object registry
= AREF (font_spec
, FONT_REGISTRY_INDEX
);
1751 Lisp_Object fontset_spec
, alias
, name
, fontset
;
1754 val
= assoc_no_quit (font_spec
, auto_fontset_alist
);
1756 return XINT (FONTSET_ID (XCDR (val
)));
1757 if (num_auto_fontsets
++ == 0)
1758 alias
= intern ("fontset-startup");
1761 char temp
[sizeof "fontset-auto" + INT_STRLEN_BOUND (ptrdiff_t)];
1763 sprintf (temp
, "fontset-auto%"pD
"d", num_auto_fontsets
- 1);
1764 alias
= intern (temp
);
1766 fontset_spec
= copy_font_spec (font_spec
);
1767 ASET (fontset_spec
, FONT_REGISTRY_INDEX
, alias
);
1768 name
= Ffont_xlfd_name (fontset_spec
, Qnil
);
1769 eassert (!NILP (name
));
1770 fontset
= make_fontset (Qnil
, name
, Qnil
);
1771 Vfontset_alias_alist
= Fcons (Fcons (name
, SYMBOL_NAME (alias
)),
1772 Vfontset_alias_alist
);
1773 alias
= Fdowncase (AREF (font_object
, FONT_NAME_INDEX
));
1774 Vfontset_alias_alist
= Fcons (Fcons (name
, alias
), Vfontset_alias_alist
);
1775 auto_fontset_alist
= Fcons (Fcons (font_spec
, fontset
), auto_fontset_alist
);
1776 font_spec
= Ffont_spec (0, NULL
);
1777 ASET (font_spec
, FONT_REGISTRY_INDEX
, registry
);
1779 Lisp_Object target
= find_font_encoding (SYMBOL_NAME (registry
));
1782 target
= XCDR (target
);
1783 if (! CHARSETP (target
))
1785 Fset_fontset_font (name
, target
, font_spec
, Qnil
, Qnil
);
1786 Fset_fontset_font (name
, Qnil
, font_spec
, Qnil
, Qnil
);
1789 set_fontset_ascii (fontset
, font_name
);
1791 return XINT (FONTSET_ID (fontset
));
1795 /* Update auto_fontset_alist for FONTSET. When an ASCII font of
1796 FONTSET is changed, we delete an entry of FONTSET if any from
1797 auto_fontset_alist so that FONTSET is not re-used by
1798 fontset_from_font. */
1801 update_auto_fontset_alist (Lisp_Object font_object
, Lisp_Object fontset
)
1803 Lisp_Object prev
, tail
;
1805 for (prev
= Qnil
, tail
= auto_fontset_alist
; CONSP (tail
);
1806 prev
= tail
, tail
= XCDR (tail
))
1807 if (EQ (fontset
, XCDR (XCAR (tail
))))
1810 auto_fontset_alist
= XCDR (tail
);
1812 XSETCDR (prev
, XCDR (tail
));
1818 /* Return a cons (FONT-OBJECT . GLYPH-CODE).
1819 FONT-OBJECT is the font for the character at POSITION in the current
1820 buffer. This is computed from all the text properties and overlays
1821 that apply to POSITION. POSITION may be nil, in which case,
1822 FONT-SPEC is the font for displaying the character CH with the
1825 GLYPH-CODE is the glyph code in the font to use for the character.
1827 If the 2nd optional arg CH is non-nil, it is a character to check
1828 the font instead of the character at POSITION.
1830 It returns nil in the following cases:
1832 (1) The window system doesn't have a font for the character (thus
1833 it is displayed by an empty box).
1835 (2) The character code is invalid.
1837 (3) If POSITION is not nil, and the current buffer is not displayed
1840 In addition, the returned font name may not take into account of
1841 such redisplay engine hooks as what used in jit-lock-mode if
1842 POSITION is currently not visible. */
1845 DEFUN ("internal-char-font", Finternal_char_font
, Sinternal_char_font
, 1, 2, 0,
1846 doc
: /* For internal use only. */)
1847 (Lisp_Object position
, Lisp_Object ch
)
1849 ptrdiff_t pos
, pos_byte
, dummy
;
1855 if (NILP (position
))
1857 CHECK_CHARACTER (ch
);
1859 f
= XFRAME (selected_frame
);
1860 face_id
= lookup_basic_face (f
, DEFAULT_FACE_ID
);
1868 CHECK_NUMBER_COERCE_MARKER (position
);
1869 if (! (BEGV
<= XINT (position
) && XINT (position
) < ZV
))
1870 args_out_of_range_3 (position
, make_number (BEGV
), make_number (ZV
));
1871 pos
= XINT (position
);
1872 pos_byte
= CHAR_TO_BYTE (pos
);
1874 c
= FETCH_CHAR (pos_byte
);
1880 window
= Fget_buffer_window (Fcurrent_buffer (), Qnil
);
1883 w
= XWINDOW (window
);
1884 f
= XFRAME (w
->frame
);
1885 face_id
= face_at_buffer_position (w
, pos
, -1, -1, &dummy
,
1888 if (! CHAR_VALID_P (c
))
1890 if (!FRAME_WINDOW_P (f
))
1892 face_id
= FACE_FOR_CHAR (f
, FACE_FROM_ID (f
, face_id
), c
, pos
, Qnil
);
1893 face
= FACE_FROM_ID (f
, face_id
);
1896 unsigned code
= face
->font
->driver
->encode_char (face
->font
, c
);
1897 Lisp_Object font_object
;
1899 if (code
== FONT_INVALID_CODE
)
1901 XSETFONT (font_object
, face
->font
);
1902 return Fcons (font_object
, INTEGER_TO_CONS (code
));
1908 DEFUN ("fontset-info", Ffontset_info
, Sfontset_info
, 1, 2, 0,
1909 doc
: /* Return information about a fontset FONTSET on frame FRAME.
1911 FONTSET is a fontset name string, nil for the fontset of FRAME, or t
1912 for the default fontset. FRAME nil means the selected frame.
1914 The value is a char-table whose elements have this form:
1916 ((FONT OPENED-FONT ...) ...)
1918 FONT is a name of font specified for a range of characters.
1920 OPENED-FONT is a name of a font actually opened.
1922 The char-table has one extra slot. If FONTSET is not the default
1923 fontset, the value the extra slot is a char-table containing the
1924 information about the derived fonts from the default fontset. The
1925 format is the same as above. */)
1926 (Lisp_Object fontset
, Lisp_Object frame
)
1928 Lisp_Object
*realized
[2], fontsets
[2], tables
[2];
1929 Lisp_Object val
, elt
;
1932 check_window_system (NULL
);
1933 fontset
= check_fontset_name (fontset
, &frame
);
1935 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1936 in the table `realized'. */
1937 realized
[0] = alloca (word_size
* ASIZE (Vfontset_table
));
1938 for (i
= j
= 0; i
< ASIZE (Vfontset_table
); i
++)
1940 elt
= FONTSET_FROM_ID (i
);
1942 && EQ (FONTSET_BASE (elt
), fontset
)
1943 && EQ (FONTSET_FRAME (elt
), frame
))
1944 realized
[0][j
++] = elt
;
1946 realized
[0][j
] = Qnil
;
1948 realized
[1] = alloca (word_size
* ASIZE (Vfontset_table
));
1949 for (i
= j
= 0; ! NILP (realized
[0][i
]); i
++)
1951 elt
= FONTSET_DEFAULT (realized
[0][i
]);
1953 realized
[1][j
++] = elt
;
1955 realized
[1][j
] = Qnil
;
1957 tables
[0] = Fmake_char_table (Qfontset_info
, Qnil
);
1958 fontsets
[0] = fontset
;
1959 if (!EQ (fontset
, Vdefault_fontset
))
1961 tables
[1] = Fmake_char_table (Qnil
, Qnil
);
1962 set_char_table_extras (tables
[0], 0, tables
[1]);
1963 fontsets
[1] = Vdefault_fontset
;
1966 /* Accumulate information of the fontset in TABLE. The format of
1967 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1968 for (k
= 0; k
<= 1; k
++)
1970 for (c
= 0; c
<= MAX_CHAR
; )
1972 int from
= c
, to
= MAX_5_BYTE_CHAR
;
1974 if (c
<= MAX_5_BYTE_CHAR
)
1976 val
= char_table_ref_and_range (fontsets
[k
], c
, &from
, &to
);
1980 val
= FONTSET_FALLBACK (fontsets
[k
]);
1987 /* At first, set ALIST to ((FONT-SPEC) ...). */
1988 for (alist
= Qnil
, i
= 0; i
< ASIZE (val
); i
++)
1989 if (! NILP (AREF (val
, i
)))
1990 alist
= Fcons (Fcons (FONT_DEF_SPEC (AREF (val
, i
)), Qnil
),
1992 alist
= Fnreverse (alist
);
1994 /* Then store opened font names to cdr of each elements. */
1995 for (i
= 0; ! NILP (realized
[k
][i
]); i
++)
1997 if (c
<= MAX_5_BYTE_CHAR
)
1998 val
= FONTSET_REF (realized
[k
][i
], c
);
2000 val
= FONTSET_FALLBACK (realized
[k
][i
]);
2001 if (! CONSP (val
) || ! VECTORP (XCDR (val
)))
2003 /* VAL: (int . [[FACE-ID FONT-DEF FONT-OBJECT int] ... ]) */
2005 for (j
= 0; j
< ASIZE (val
); j
++)
2007 elt
= AREF (val
, j
);
2008 if (FONT_OBJECT_P (RFONT_DEF_OBJECT (elt
)))
2010 Lisp_Object font_object
= RFONT_DEF_OBJECT (elt
);
2011 Lisp_Object slot
, name
;
2013 slot
= Fassq (RFONT_DEF_SPEC (elt
), alist
);
2014 name
= AREF (font_object
, FONT_NAME_INDEX
);
2015 if (NILP (Fmember (name
, XCDR (slot
))))
2016 nconc2 (slot
, list1 (name
));
2021 /* Store ALIST in TBL for characters C..TO. */
2022 if (c
<= MAX_5_BYTE_CHAR
)
2023 char_table_set_range (tables
[k
], c
, to
, alist
);
2025 set_char_table_defalt (tables
[k
], alist
);
2027 /* At last, change each elements to font names. */
2028 for (; CONSP (alist
); alist
= XCDR (alist
))
2031 XSETCAR (elt
, Ffont_xlfd_name (XCAR (elt
), Qnil
));
2036 if (EQ (fontset
, Vdefault_fontset
))
2044 DEFUN ("fontset-font", Ffontset_font
, Sfontset_font
, 2, 3, 0,
2045 doc
: /* Return a font name pattern for character CH in fontset NAME.
2046 If NAME is t, find a pattern in the default fontset.
2047 If NAME is nil, find a pattern in the fontset of the selected frame.
2049 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
2050 family name and REGISTRY is a font registry name. This is actually
2051 the first font name pattern for CH in the fontset or in the default
2054 If the 2nd optional arg ALL is non-nil, return a list of all font name
2056 (Lisp_Object name
, Lisp_Object ch
, Lisp_Object all
)
2059 Lisp_Object fontset
, elt
, list
, repertory
, val
;
2064 fontset
= check_fontset_name (name
, &frame
);
2066 CHECK_CHARACTER (ch
);
2071 for (i
= 0, elt
= FONTSET_REF (fontset
, c
); i
< 2;
2072 i
++, elt
= FONTSET_FALLBACK (fontset
))
2074 for (j
= 0; j
< ASIZE (elt
); j
++)
2076 Lisp_Object family
, registry
;
2078 val
= AREF (elt
, j
);
2081 repertory
= AREF (val
, 1);
2082 if (INTEGERP (repertory
))
2084 struct charset
*charset
= CHARSET_FROM_ID (XINT (repertory
));
2086 if (! CHAR_CHARSET_P (c
, charset
))
2089 else if (CHAR_TABLE_P (repertory
))
2091 if (NILP (CHAR_TABLE_REF (repertory
, c
)))
2094 val
= AREF (val
, 0);
2095 /* VAL is a FONT-SPEC */
2096 family
= AREF (val
, FONT_FAMILY_INDEX
);
2097 if (! NILP (family
))
2098 family
= SYMBOL_NAME (family
);
2099 registry
= AREF (val
, FONT_REGISTRY_INDEX
);
2100 if (! NILP (registry
))
2101 registry
= SYMBOL_NAME (registry
);
2102 val
= Fcons (family
, registry
);
2105 list
= Fcons (val
, list
);
2107 if (EQ (fontset
, Vdefault_fontset
))
2109 fontset
= Vdefault_fontset
;
2111 return (Fnreverse (list
));
2114 DEFUN ("fontset-list", Ffontset_list
, Sfontset_list
, 0, 0, 0,
2115 doc
: /* Return a list of all defined fontset names. */)
2118 Lisp_Object fontset
, list
;
2122 for (i
= 0; i
< ASIZE (Vfontset_table
); i
++)
2124 fontset
= FONTSET_FROM_ID (i
);
2126 && BASE_FONTSET_P (fontset
))
2127 list
= Fcons (FONTSET_NAME (fontset
), list
);
2134 #ifdef ENABLE_CHECKING
2136 Lisp_Object
dump_fontset (Lisp_Object
) EXTERNALLY_VISIBLE
;
2139 dump_fontset (Lisp_Object fontset
)
2143 vec
= Fmake_vector (make_number (3), Qnil
);
2144 ASET (vec
, 0, FONTSET_ID (fontset
));
2146 if (BASE_FONTSET_P (fontset
))
2148 ASET (vec
, 1, FONTSET_NAME (fontset
));
2154 frame
= FONTSET_FRAME (fontset
);
2157 struct frame
*f
= XFRAME (frame
);
2159 if (FRAME_LIVE_P (f
))
2161 Fcons (FONTSET_NAME (FONTSET_BASE (fontset
)),
2165 Fcons (FONTSET_NAME (FONTSET_BASE (fontset
)), Qnil
));
2167 if (!NILP (FONTSET_DEFAULT (fontset
)))
2168 ASET (vec
, 2, FONTSET_ID (FONTSET_DEFAULT (fontset
)));
2173 DEFUN ("fontset-list-all", Ffontset_list_all
, Sfontset_list_all
, 0, 0, 0,
2174 doc
: /* Return a brief summary of all fontsets for debug use. */)
2180 for (i
= 0, val
= Qnil
; i
< ASIZE (Vfontset_table
); i
++)
2181 if (! NILP (AREF (Vfontset_table
, i
)))
2182 val
= Fcons (dump_fontset (AREF (Vfontset_table
, i
)), val
);
2183 return (Fnreverse (val
));
2185 #endif /* ENABLE_CHECKING */
2188 syms_of_fontset (void)
2190 DEFSYM (Qfontset
, "fontset");
2191 Fput (Qfontset
, Qchar_table_extra_slots
, make_number (9));
2192 DEFSYM (Qfontset_info
, "fontset-info");
2193 Fput (Qfontset_info
, Qchar_table_extra_slots
, make_number (1));
2195 DEFSYM (Qprepend
, "prepend");
2196 DEFSYM (Qappend
, "append");
2197 DEFSYM (Qlatin
, "latin");
2199 Vcached_fontset_data
= Qnil
;
2200 staticpro (&Vcached_fontset_data
);
2202 Vfontset_table
= Fmake_vector (make_number (32), Qnil
);
2203 staticpro (&Vfontset_table
);
2205 Vdefault_fontset
= Fmake_char_table (Qfontset
, Qnil
);
2206 staticpro (&Vdefault_fontset
);
2207 set_fontset_id (Vdefault_fontset
, make_number (0));
2210 build_pure_c_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default"));
2211 ASET (Vfontset_table
, 0, Vdefault_fontset
);
2212 next_fontset_id
= 1;
2214 auto_fontset_alist
= Qnil
;
2215 staticpro (&auto_fontset_alist
);
2217 DEFVAR_LISP ("font-encoding-charset-alist", Vfont_encoding_charset_alist
,
2219 Alist of charsets vs the charsets to determine the preferred font encoding.
2220 Each element looks like (CHARSET . ENCODING-CHARSET),
2221 where ENCODING-CHARSET is a charset registered in the variable
2222 `font-encoding-alist' as ENCODING.
2224 When a text has a property `charset' and the value is CHARSET, a font
2225 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2226 Vfont_encoding_charset_alist
= Qnil
;
2228 DEFVAR_LISP ("use-default-ascent", Vuse_default_ascent
,
2230 Char table of characters whose ascent values should be ignored.
2231 If an entry for a character is non-nil, the ascent value of the glyph
2232 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2234 This affects how a composite character which contains
2235 such a character is displayed on screen. */);
2236 Vuse_default_ascent
= Qnil
;
2238 DEFVAR_LISP ("ignore-relative-composition", Vignore_relative_composition
,
2240 Char table of characters which are not composed relatively.
2241 If an entry for a character is non-nil, a composition sequence
2242 which contains that character is displayed so that
2243 the glyph of that character is put without considering
2244 an ascent and descent value of a previous character. */);
2245 Vignore_relative_composition
= Qnil
;
2247 DEFVAR_LISP ("alternate-fontname-alist", Valternate_fontname_alist
,
2248 doc
: /* Alist of fontname vs list of the alternate fontnames.
2249 When a specified font name is not found, the corresponding
2250 alternate fontnames (if any) are tried instead. */);
2251 Valternate_fontname_alist
= Qnil
;
2253 DEFVAR_LISP ("fontset-alias-alist", Vfontset_alias_alist
,
2254 doc
: /* Alist of fontset names vs the aliases. */);
2255 Vfontset_alias_alist
2256 = list1 (Fcons (FONTSET_NAME (Vdefault_fontset
),
2257 build_pure_c_string ("fontset-default")));
2259 DEFVAR_LISP ("vertical-centering-font-regexp",
2260 Vvertical_centering_font_regexp
,
2261 doc
: /* Regexp matching font names that require vertical centering on display.
2262 When a character is displayed with such fonts, the character is displayed
2263 at the vertical center of lines. */);
2264 Vvertical_centering_font_regexp
= Qnil
;
2266 DEFVAR_LISP ("otf-script-alist", Votf_script_alist
,
2267 doc
: /* Alist of OpenType script tags vs the corresponding script names. */);
2268 Votf_script_alist
= Qnil
;
2270 defsubr (&Squery_fontset
);
2271 defsubr (&Snew_fontset
);
2272 defsubr (&Sset_fontset_font
);
2273 defsubr (&Sinternal_char_font
);
2274 defsubr (&Sfontset_info
);
2275 defsubr (&Sfontset_font
);
2276 defsubr (&Sfontset_list
);
2277 #ifdef ENABLE_CHECKING
2278 defsubr (&Sfontset_list_all
);