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