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