Mercurial > emacs
annotate src/fontset.c @ 23912:3ee28fa62fbe
(IRIX6): Define this symbol.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Wed, 16 Dec 1998 21:44:28 +0000 |
| parents | 73f09e7bc96e |
| children | 6810d6fb639f |
| rev | line source |
|---|---|
| 17052 | 1 /* Fontset handler. |
|
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18192
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
|
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
18192
diff
changeset
|
3 Licensed to the Free Software Foundation. |
| 17052 | 4 |
| 17071 | 5 This file is part of GNU Emacs. |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 17052 | 11 |
| 17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 17052 | 16 |
| 17071 | 17 You should have received a copy of the GNU General Public License |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 20 Boston, MA 02111-1307, USA. */ | |
| 17052 | 21 |
| 22 #include <config.h> | |
| 23 #if HAVE_ALLOCA_H | |
| 24 #include <alloca.h> | |
| 25 #endif /* HAVE_ALLOCA_H */ | |
| 26 #include "lisp.h" | |
| 27 #include "charset.h" | |
| 28 #include "ccl.h" | |
|
23517
73f09e7bc96e
Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents:
22719
diff
changeset
|
29 #include "frame.h" |
| 17052 | 30 #include "fontset.h" |
| 31 | |
| 32 Lisp_Object Vglobal_fontset_alist; | |
| 33 Lisp_Object Vfont_encoding_alist; | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
34 Lisp_Object Vuse_default_ascent; |
|
19282
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
35 Lisp_Object Vignore_relative_composition; |
|
19450
895dc2520755
(Valternate_fontname_alist): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19282
diff
changeset
|
36 Lisp_Object Valternate_fontname_alist; |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
37 Lisp_Object Vfontset_alias_alist; |
|
17331
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
38 Lisp_Object Vhighlight_wrong_size_font; |
|
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
39 Lisp_Object Vclip_large_size_font; |
| 17052 | 40 |
|
18346
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
41 /* Used as a temporary in macro FS_LOAD_FONT. */ |
|
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
42 int font_idx_temp; |
|
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
43 |
| 17052 | 44 /* We had better have our own strcasecmp function because some system |
| 45 doesn't have it. */ | |
| 46 static char my_strcasetbl[256]; | |
| 47 | |
| 48 /* Compare two strings S0 and S1 while ignoring differences in case. | |
| 49 Return 1 if they differ, else return 0. */ | |
| 50 static int | |
| 51 my_strcasecmp (s0, s1) | |
| 52 unsigned char *s0, *s1; | |
| 53 { | |
| 54 while (*s0) | |
| 55 if (my_strcasetbl[*s0++] != my_strcasetbl[*s1++]) return 1; | |
| 56 return (int) *s1; | |
| 57 } | |
| 58 | |
| 59 /* The following six are window system dependent functions. See | |
| 60 the comments in src/fontset.h for more detail. */ | |
| 61 | |
| 62 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */ | |
|
20315
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
63 struct font_info *(*get_font_info_func) P_ ((FRAME_PTR f, int font_idx)); |
| 17052 | 64 |
| 65 /* Return a list of font names which matches PATTERN. See the document of | |
| 66 `x-list-fonts' for more detail. */ | |
|
23517
73f09e7bc96e
Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents:
22719
diff
changeset
|
67 Lisp_Object (*list_fonts_func) P_ ((struct frame *f, |
|
73f09e7bc96e
Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents:
22719
diff
changeset
|
68 Lisp_Object pattern, |
|
73f09e7bc96e
Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents:
22719
diff
changeset
|
69 int size, |
|
73f09e7bc96e
Include frame.h before fontset.h.
Kenichi Handa <handa@m17n.org>
parents:
22719
diff
changeset
|
70 int maxnames)); |
| 17052 | 71 |
| 72 /* Load a font named NAME for frame F and return a pointer to the | |
| 73 information of the loaded font. If loading is failed, return 0. */ | |
|
20315
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
74 struct font_info *(*load_font_func) P_ ((FRAME_PTR f, char *name, int)); |
| 17052 | 75 |
| 76 /* Return a pointer to struct font_info of a font named NAME for frame F. */ | |
|
20315
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
77 struct font_info *(*query_font_func) P_ ((FRAME_PTR f, char *name)); |
| 17052 | 78 |
| 79 /* Additional function for setting fontset or changing fontset | |
| 80 contents of frame F. */ | |
|
20315
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
81 void (*set_frame_fontset_func) P_ ((FRAME_PTR f, Lisp_Object arg, |
|
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
82 Lisp_Object oldval)); |
| 17052 | 83 |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
84 /* To find a CCL program, fs_load_font calls this function. |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
85 The argument is a pointer to the struct font_info. |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
86 This function set the memer `encoder' of the structure. */ |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
87 void (*find_ccl_program_func) P_ ((struct font_info *)); |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
88 |
| 17052 | 89 /* Check if any window system is used now. */ |
|
20315
931b4ddf7966
Protoize functions declarations.
Andreas Schwab <schwab@suse.de>
parents:
19450
diff
changeset
|
90 void (*check_window_system_func) P_ ((void)); |
| 17052 | 91 |
| 92 struct fontset_data * | |
| 93 alloc_fontset_data () | |
| 94 { | |
| 95 struct fontset_data *fontset_data | |
| 96 = (struct fontset_data *) xmalloc (sizeof (struct fontset_data)); | |
| 97 | |
| 98 bzero (fontset_data, sizeof (struct fontset_data)); | |
| 99 | |
| 100 return fontset_data; | |
| 101 } | |
| 102 | |
| 103 void | |
| 104 free_fontset_data (fontset_data) | |
| 105 struct fontset_data *fontset_data; | |
| 106 { | |
|
20346
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
107 if (fontset_data->fontset_table) |
| 17052 | 108 { |
|
20346
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
109 int i; |
| 17052 | 110 |
|
20346
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
111 for (i = 0; i < fontset_data->n_fontsets; i++) |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
112 { |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
113 int j; |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
114 |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
115 xfree (fontset_data->fontset_table[i]->name); |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
116 for (j = 0; j <= MAX_CHARSET; j++) |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
117 if (fontset_data->fontset_table[i]->fontname[j]) |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
118 xfree (fontset_data->fontset_table[i]->fontname[j]); |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
119 xfree (fontset_data->fontset_table[i]); |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
120 } |
|
97e5f74f6bc1
(free_fontset_data): Don't free null pointer.
Richard M. Stallman <rms@gnu.org>
parents:
20315
diff
changeset
|
121 xfree (fontset_data->fontset_table); |
| 17052 | 122 } |
| 123 | |
| 124 xfree (fontset_data); | |
| 125 } | |
| 126 | |
| 127 /* Load a font named FONTNAME for displaying CHARSET on frame F. | |
| 128 All fonts for frame F is stored in a table pointed by FONT_TABLE. | |
| 129 Return a pointer to the struct font_info of the loaded font. | |
| 130 If loading fails, return 0; | |
| 131 If FONTNAME is NULL, the name is taken from the information of FONTSET. | |
| 132 If FONTSET is given, try to load a font whose size matches that of | |
|
18346
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
133 FONTSET, and, the font index is stored in the table for FONTSET. |
|
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
134 |
|
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
135 If you give FONTSET argument, don't call this function directry, |
|
c46e9f750033
(font_idx_temp): New temprary variable used in FS_LOAD_FONT.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
136 instead call macro FS_LOAD_FONT with the same argument. */ |
| 17052 | 137 |
| 138 struct font_info * | |
| 139 fs_load_font (f, font_table, charset, fontname, fontset) | |
| 140 FRAME_PTR f; | |
| 141 struct font_info *font_table; | |
| 142 int charset, fontset; | |
| 143 char *fontname; | |
| 144 { | |
| 145 Lisp_Object font_list; | |
| 146 Lisp_Object list, elt; | |
| 147 int font_idx; | |
| 148 int size = 0; | |
| 149 struct fontset_info *fontsetp = 0; | |
| 150 struct font_info *fontp; | |
| 151 | |
| 152 if (fontset >= 0 && fontset < FRAME_FONTSET_DATA (f)->n_fontsets) | |
| 153 { | |
| 154 fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset]; | |
| 155 font_idx = fontsetp->font_indexes[charset]; | |
| 156 if (font_idx >= 0) | |
| 157 /* We have already loaded a font. */ | |
| 158 return font_table + font_idx; | |
| 159 else if (font_idx == FONT_NOT_FOUND) | |
| 160 /* We have already tried loading a font and failed. */ | |
| 161 return 0; | |
| 162 if (!fontname) | |
| 163 fontname = fontsetp->fontname[charset]; | |
| 164 } | |
| 165 | |
| 166 if (!fontname) | |
| 167 /* No way to get fontname. */ | |
| 168 return 0; | |
| 169 | |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
170 /* If CHARSET is not ASCII and FONTSET is specified, we must load a |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
171 font of appropriate size to be used with other fonts in this |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
172 fontset. */ |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
173 if (charset != CHARSET_ASCII && fontsetp) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
174 { |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
175 /* If we have not yet loaded ASCII font of FONTSET, we must load |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
176 it now to decided the size and height of this fontset. */ |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
177 if (fontsetp->size == 0) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
178 { |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
179 fontp = fs_load_font (f, font_table, CHARSET_ASCII, 0, fontset); |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
180 if (!fontp) |
|
22719
d6f6ac5a5df3
(fs_load_font): Typo in comments fixed.
Kenichi Handa <handa@m17n.org>
parents:
21553
diff
changeset
|
181 /* Any fontset should contain available ASCII. */ |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
182 return 0; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
183 } |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
184 /* Now we have surely decided the size of this fontset. */ |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
185 size = fontsetp->size * CHARSET_WIDTH (charset); |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
186 } |
| 17052 | 187 |
| 188 fontp = (*load_font_func) (f, fontname, size); | |
| 189 | |
| 190 if (!fontp) | |
| 191 { | |
| 192 if (fontsetp) | |
| 193 fontsetp->font_indexes[charset] = FONT_NOT_FOUND; | |
| 194 return 0; | |
| 195 } | |
| 196 | |
| 197 /* Fill in fields (CHARSET, ENCODING, and FONT_ENCODER) which are | |
| 198 not set by (*load_font_func). */ | |
| 199 fontp->charset = charset; | |
| 200 | |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
201 if (fontp->encoding[1] != FONT_ENCODING_NOT_DECIDED) |
| 17052 | 202 { |
| 203 /* The font itself tells which code points to be used. Use this | |
| 204 encoding for all other charsets. */ | |
| 205 int i; | |
| 206 | |
| 207 fontp->encoding[0] = fontp->encoding[1]; | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17112
diff
changeset
|
208 for (i = MIN_CHARSET_OFFICIAL_DIMENSION1; i <= MAX_CHARSET; i++) |
| 17052 | 209 fontp->encoding[i] = fontp->encoding[1]; |
| 210 } | |
| 211 else | |
| 212 { | |
| 213 /* The font itself doesn't tell which code points to be used. */ | |
| 214 int i; | |
| 215 | |
| 216 /* At first, set 1 (means 0xA0..0xFF) as the default. */ | |
| 217 fontp->encoding[0] = 1; | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17112
diff
changeset
|
218 for (i = MIN_CHARSET_OFFICIAL_DIMENSION1; i <= MAX_CHARSET; i++) |
| 17052 | 219 fontp->encoding[i] = 1; |
| 220 /* Then override them by a specification in Vfont_encoding_alist. */ | |
| 221 for (list = Vfont_encoding_alist; CONSP (list); list = XCONS (list)->cdr) | |
| 222 { | |
| 223 elt = XCONS (list)->car; | |
| 224 if (CONSP (elt) | |
| 225 && STRINGP (XCONS (elt)->car) && CONSP (XCONS (elt)->cdr) | |
|
18192
a3f50c636d81
(list_fontsets, fs_load_font): fast_c_string_match_ignore_case renamed.
Richard M. Stallman <rms@gnu.org>
parents:
17999
diff
changeset
|
226 && (fast_c_string_match_ignore_case (XCONS (elt)->car, fontname) |
| 17052 | 227 >= 0)) |
| 228 { | |
| 229 Lisp_Object tmp; | |
| 230 | |
| 231 for (tmp = XCONS (elt)->cdr; CONSP (tmp); tmp = XCONS (tmp)->cdr) | |
| 232 if (CONSP (XCONS (tmp)->car) | |
| 233 && ((i = get_charset_id (XCONS (XCONS (tmp)->car)->car)) | |
| 234 >= 0) | |
| 235 && INTEGERP (XCONS (XCONS (tmp)->car)->cdr) | |
| 236 && XFASTINT (XCONS (XCONS (tmp)->car)->cdr) < 4) | |
| 237 fontp->encoding[i] | |
| 238 = XFASTINT (XCONS (XCONS (tmp)->car)->cdr); | |
| 239 } | |
| 240 } | |
| 241 } | |
| 242 | |
| 243 fontp->font_encoder = (struct ccl_program *) 0; | |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
244 |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
245 if (find_ccl_program_func) |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
246 (*find_ccl_program_func) (fontp); |
| 17052 | 247 |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
248 /* If FONTSET is specified, setup various fields of it. */ |
| 17052 | 249 if (fontsetp) |
| 250 { | |
| 251 fontsetp->font_indexes[charset] = fontp->font_idx; | |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
252 if (charset == CHARSET_ASCII) |
| 17052 | 253 { |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
254 /* Decide or change the size and height of this fontset. */ |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
255 if (fontsetp->size == 0) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
256 { |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
257 fontsetp->size = fontp->size; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
258 fontsetp->height = fontp->height; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
259 } |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
260 else if (fontsetp->size != fontp->size |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
261 || fontsetp->height != fontp->height) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
262 { |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
263 /* When loading ASCII font of the different size from |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
264 the size of FONTSET, we have to update the size of |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
265 FONTSET. Since changing the size of FONTSET may make |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
266 some fonts already loaded inappropriate to be used in |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
267 FONTSET, we must delete the record of such fonts. In |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
268 that case, we also have to calculate the height of |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
269 FONTSET from the remaining fonts. */ |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
270 int i; |
| 17052 | 271 |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
272 fontsetp->size = fontp->size; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
273 fontsetp->height = fontp->height; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
274 for (i = CHARSET_ASCII + 1; i <= MAX_CHARSET; i++) |
| 17052 | 275 { |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
276 font_idx = fontsetp->font_indexes[i]; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
277 if (font_idx >= 0) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
278 { |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
279 struct font_info *fontp2 = font_table + font_idx; |
| 17052 | 280 |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
281 if (fontp2->size != fontp->size * CHARSET_WIDTH (i)) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
282 fontsetp->font_indexes[i] = FONT_NOT_OPENED; |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
283 /* The following code should be disabled until |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
284 Emacs supports variable height lines. */ |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
285 #if 0 |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
286 else if (fontsetp->height < fontp->height) |
|
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
287 fontsetp->height = fontp->height; |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
288 #endif |
|
17999
5e325c8057c8
(fs_load_font): Before using a fontset, be sure to
Kenichi Handa <handa@m17n.org>
parents:
17882
diff
changeset
|
289 } |
| 17052 | 290 } |
| 291 } | |
| 292 } | |
| 293 } | |
| 294 | |
| 295 return fontp; | |
| 296 } | |
| 297 | |
| 298 /* Return ID of the fontset named NAME on frame F. */ | |
| 299 | |
| 300 int | |
| 301 fs_query_fontset (f, name) | |
| 302 FRAME_PTR f; | |
| 303 char *name; | |
| 304 { | |
| 305 struct fontset_data *fontset_data = FRAME_FONTSET_DATA (f); | |
| 306 int i; | |
| 307 | |
| 308 for (i = 0; i < fontset_data->n_fontsets; i++) | |
| 309 if (!my_strcasecmp(name, fontset_data->fontset_table[i]->name)) | |
| 310 return i; | |
| 311 return -1; | |
| 312 } | |
| 313 | |
| 314 /* Register a fontset specified by FONTSET_INFO for frame FRAME. | |
| 315 Return the fontset ID if successfully registered, else return -1. | |
| 316 FONTSET_INFO is a cons of name of the fontset and FONTLIST, where | |
| 317 FONTLIST is an alist of charsets vs fontnames. */ | |
| 318 | |
| 319 int | |
| 320 fs_register_fontset (f, fontset_info) | |
| 321 FRAME_PTR f; | |
| 322 Lisp_Object fontset_info; | |
| 323 { | |
| 324 struct fontset_data *fontset_data = FRAME_FONTSET_DATA (f); | |
| 325 Lisp_Object name, fontlist; | |
| 326 int fontset; | |
| 327 struct fontset_info *fontsetp; | |
| 328 int i; | |
| 329 | |
| 330 if (!CONSP (fontset_info) | |
| 331 || !STRINGP (XCONS (fontset_info)->car) | |
| 332 || !CONSP (XCONS (fontset_info)->cdr)) | |
| 333 /* Invalid data in FONTSET_INFO. */ | |
| 334 return -1; | |
| 335 | |
| 336 name = XCONS (fontset_info)->car; | |
| 337 if ((fontset = fs_query_fontset (f, XSTRING (name)->data)) >= 0) | |
| 338 /* This fontset already exists on frame F. */ | |
| 339 return fontset; | |
| 340 | |
| 341 fontsetp = (struct fontset_info *) xmalloc (sizeof (struct fontset_info)); | |
| 342 | |
| 343 fontsetp->name = (char *) xmalloc (XSTRING (name)->size + 1); | |
| 344 bcopy(XSTRING (name)->data, fontsetp->name, XSTRING (name)->size + 1); | |
| 345 | |
| 346 fontsetp->size = fontsetp->height = 0; | |
| 347 | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17112
diff
changeset
|
348 for (i = 0; i <= MAX_CHARSET; i++) |
| 17052 | 349 { |
| 350 fontsetp->fontname[i] = (char *) 0; | |
| 351 fontsetp->font_indexes[i] = FONT_NOT_OPENED; | |
| 352 } | |
| 353 | |
| 354 for (fontlist = XCONS (fontset_info)->cdr; CONSP (fontlist); | |
| 355 fontlist = XCONS (fontlist)->cdr) | |
| 356 { | |
| 357 Lisp_Object tem = Fcar (fontlist); | |
| 358 int charset; | |
| 359 | |
| 360 if (CONSP (tem) | |
| 361 && (charset = get_charset_id (XCONS (tem)->car)) >= 0 | |
| 362 && STRINGP (XCONS (tem)->cdr)) | |
| 363 { | |
| 364 fontsetp->fontname[charset] | |
| 365 = (char *) xmalloc (XSTRING (XCONS (tem)->cdr)->size + 1); | |
| 366 bcopy (XSTRING (XCONS (tem)->cdr)->data, | |
| 367 fontsetp->fontname[charset], | |
| 368 XSTRING (XCONS (tem)->cdr)->size + 1); | |
| 369 } | |
| 370 else | |
| 371 /* Broken or invalid data structure. */ | |
| 372 return -1; | |
| 373 } | |
| 374 | |
| 375 /* Do we need to create the table? */ | |
| 376 if (fontset_data->fontset_table_size == 0) | |
| 377 { | |
| 378 fontset_data->fontset_table_size = 8; | |
| 379 fontset_data->fontset_table | |
| 380 = (struct fontset_info **) xmalloc (fontset_data->fontset_table_size | |
| 381 * sizeof (struct fontset_info *)); | |
| 382 } | |
| 383 /* Do we need to grow the table? */ | |
| 384 else if (fontset_data->n_fontsets >= fontset_data->fontset_table_size) | |
| 385 { | |
| 386 fontset_data->fontset_table_size += 8; | |
| 387 fontset_data->fontset_table | |
| 388 = (struct fontset_info **) xrealloc (fontset_data->fontset_table, | |
| 389 fontset_data->fontset_table_size | |
| 390 * sizeof (struct fontset_info *)); | |
| 391 } | |
| 392 fontset = fontset_data->n_fontsets++; | |
| 393 fontset_data->fontset_table[fontset] = fontsetp; | |
| 394 | |
| 395 return fontset; | |
| 396 } | |
| 397 | |
| 398 /* Cache data used by fontset_pattern_regexp. The car part is a | |
| 399 pattern string containing at least one wild card, the cdr part is | |
| 400 the corresponding regular expression. */ | |
| 401 static Lisp_Object Vcached_fontset_data; | |
| 402 | |
| 403 #define CACHED_FONTSET_NAME (XSTRING (XCONS (Vcached_fontset_data)->car)->data) | |
| 404 #define CACHED_FONTSET_REGEX (XCONS (Vcached_fontset_data)->cdr) | |
| 405 | |
| 406 /* If fontset name PATTERN contains any wild card, return regular | |
| 407 expression corresponding to PATTERN. */ | |
| 408 | |
| 409 Lisp_Object | |
| 410 fontset_pattern_regexp (pattern) | |
| 411 Lisp_Object pattern; | |
| 412 { | |
| 413 if (!index (XSTRING (pattern)->data, '*') | |
| 414 && !index (XSTRING (pattern)->data, '?')) | |
| 415 /* PATTERN does not contain any wild cards. */ | |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
416 return Qnil; |
| 17052 | 417 |
| 418 if (!CONSP (Vcached_fontset_data) | |
| 419 || strcmp (XSTRING (pattern)->data, CACHED_FONTSET_NAME)) | |
| 420 { | |
| 421 /* We must at first update the cached data. */ | |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
422 char *regex = (char *) alloca (XSTRING (pattern)->size * 2); |
| 17052 | 423 char *p0, *p1 = regex; |
| 424 | |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
425 /* Convert "*" to ".*", "?" to ".". */ |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
426 *p1++ = '^'; |
|
17827
95010205f916
(fontset_pattern_regexp): Cast to (char *) before
Kenichi Handa <handa@m17n.org>
parents:
17730
diff
changeset
|
427 for (p0 = (char *) XSTRING (pattern)->data; *p0; p0++) |
| 17052 | 428 { |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
429 if (*p0 == '*') |
| 17052 | 430 { |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
431 *p1++ = '.'; |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
432 *p1++ = '*'; |
| 17052 | 433 } |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
434 else if (*p0 == '?') |
|
21127
577865651099
(fontset_pattern_regexp): `==' was used instead of `='.
Richard M. Stallman <rms@gnu.org>
parents:
20346
diff
changeset
|
435 *p1++ = '.'; |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
436 else |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
437 *p1++ = *p0; |
| 17052 | 438 } |
| 439 *p1++ = '$'; | |
| 440 *p1++ = 0; | |
| 441 | |
| 442 Vcached_fontset_data = Fcons (build_string (XSTRING (pattern)->data), | |
| 443 build_string (regex)); | |
| 444 } | |
| 445 | |
| 446 return CACHED_FONTSET_REGEX; | |
| 447 } | |
| 448 | |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
449 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0, |
| 17052 | 450 "Return a fontset name which matches PATTERN, nil if no matching fontset.\n\ |
| 451 PATTERN can contain `*' or `?' as a wild card\n\ | |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
452 just like X's font name matching algorithm allows.\n\ |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
453 If REGEXPP is non-nil, pattern is regexp;\n\ |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
454 so PATTERN is considered as regular expression.") |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
455 (pattern, regexpp) |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
456 Lisp_Object pattern, regexpp; |
| 17052 | 457 { |
| 458 Lisp_Object regexp, tem; | |
| 459 | |
| 460 (*check_window_system_func) (); | |
| 461 | |
| 462 CHECK_STRING (pattern, 0); | |
| 463 | |
| 464 if (XSTRING (pattern)->size == 0) | |
| 465 return Qnil; | |
| 466 | |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
467 tem = Frassoc (pattern, Vfontset_alias_alist); |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
468 if (!NILP (tem)) |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
469 return Fcar (tem); |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
470 |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
471 if (NILP (regexpp)) |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
472 regexp = fontset_pattern_regexp (pattern); |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
473 else |
|
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
474 regexp = pattern; |
| 17052 | 475 |
| 476 for (tem = Vglobal_fontset_alist; CONSP (tem); tem = XCONS (tem)->cdr) | |
| 477 { | |
| 478 Lisp_Object fontset_name = XCONS (XCONS (tem)->car)->car; | |
| 479 if (!NILP (regexp)) | |
| 480 { | |
|
18192
a3f50c636d81
(list_fontsets, fs_load_font): fast_c_string_match_ignore_case renamed.
Richard M. Stallman <rms@gnu.org>
parents:
17999
diff
changeset
|
481 if (fast_c_string_match_ignore_case (regexp, |
|
a3f50c636d81
(list_fontsets, fs_load_font): fast_c_string_match_ignore_case renamed.
Richard M. Stallman <rms@gnu.org>
parents:
17999
diff
changeset
|
482 XSTRING (fontset_name)->data) |
| 17052 | 483 >= 0) |
| 484 return fontset_name; | |
| 485 } | |
| 486 else | |
| 487 { | |
| 488 if (!my_strcasecmp (XSTRING (pattern)->data, | |
| 489 XSTRING (fontset_name)->data)) | |
| 490 return fontset_name; | |
| 491 } | |
| 492 } | |
| 493 | |
| 494 return Qnil; | |
| 495 } | |
| 496 | |
| 497 /* Return a list of names of available fontsets matching PATTERN on | |
| 498 frame F. If SIZE is not 0, it is the size (maximum bound width) of | |
| 499 fontsets to be listed. */ | |
| 500 | |
| 501 Lisp_Object | |
| 502 list_fontsets (f, pattern, size) | |
| 503 FRAME_PTR f; | |
| 504 Lisp_Object pattern; | |
| 505 int size; | |
| 506 { | |
| 507 int i; | |
| 508 Lisp_Object regexp, val; | |
| 509 | |
| 510 regexp = fontset_pattern_regexp (pattern); | |
| 511 | |
| 512 val = Qnil; | |
| 513 for (i = 0; i < FRAME_FONTSET_DATA (f)->n_fontsets; i++) | |
| 514 { | |
| 515 struct fontset_info *fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[i]; | |
| 516 int name_matched = 0; | |
| 517 int size_matched = 0; | |
| 518 | |
| 519 if (!NILP (regexp)) | |
| 520 { | |
|
18192
a3f50c636d81
(list_fontsets, fs_load_font): fast_c_string_match_ignore_case renamed.
Richard M. Stallman <rms@gnu.org>
parents:
17999
diff
changeset
|
521 if (fast_c_string_match_ignore_case (regexp, fontsetp->name) >= 0) |
| 17052 | 522 name_matched = 1; |
| 523 } | |
| 524 else | |
| 525 { | |
| 526 if (!my_strcasecmp (XSTRING (pattern)->data, fontsetp->name)) | |
| 527 name_matched = 1; | |
| 528 } | |
| 529 | |
| 530 if (name_matched) | |
| 531 { | |
| 532 if (!size || fontsetp->size == size) | |
| 533 size_matched = 1; | |
| 534 else if (fontsetp->size == 0) | |
| 535 { | |
| 536 /* No font of this fontset has loaded yet. Try loading | |
| 537 one with SIZE. */ | |
| 538 int j; | |
| 539 | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17112
diff
changeset
|
540 for (j = 0; j <= MAX_CHARSET; j++) |
| 17052 | 541 if (fontsetp->fontname[j]) |
| 542 { | |
| 543 if ((*load_font_func) (f, fontsetp->fontname[j], size)) | |
| 544 size_matched = 1; | |
| 545 break; | |
| 546 } | |
| 547 } | |
| 548 | |
| 549 if (size_matched) | |
| 550 val = Fcons (build_string (fontsetp->name), val); | |
| 551 } | |
| 552 } | |
| 553 | |
| 554 return val; | |
| 555 } | |
| 556 | |
| 557 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0, | |
| 558 "Create a new fontset NAME which contains fonts in FONTLIST.\n\ | |
| 559 FONTLIST is an alist of charsets vs corresponding font names.") | |
| 560 (name, fontlist) | |
| 561 Lisp_Object name, fontlist; | |
| 562 { | |
| 563 Lisp_Object fullname, fontset_info; | |
| 564 Lisp_Object tail; | |
| 565 | |
| 566 (*check_window_system_func) (); | |
| 567 | |
| 568 CHECK_STRING (name, 0); | |
| 569 CHECK_LIST (fontlist, 1); | |
| 570 | |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
571 fullname = Fquery_fontset (name, Qnil); |
| 17052 | 572 if (!NILP (fullname)) |
| 573 error ("Fontset \"%s\" matches the existing fontset \"%s\"", | |
| 574 XSTRING (name)->data, XSTRING (fullname)->data); | |
| 575 | |
| 576 /* Check the validity of FONTLIST. */ | |
| 577 for (tail = fontlist; CONSP (tail); tail = XCONS (tail)->cdr) | |
| 578 { | |
| 579 Lisp_Object tem = XCONS (tail)->car; | |
| 580 int charset; | |
| 581 | |
| 582 if (!CONSP (tem) | |
| 583 || (charset = get_charset_id (XCONS (tem)->car)) < 0 | |
| 584 || !STRINGP (XCONS (tem)->cdr)) | |
| 585 error ("Elements of fontlist must be a cons of charset and font name"); | |
| 586 } | |
| 587 | |
| 588 fontset_info = Fcons (name, fontlist); | |
| 589 Vglobal_fontset_alist = Fcons (fontset_info, Vglobal_fontset_alist); | |
| 590 | |
| 591 /* Register this fontset for all existing frames. */ | |
| 592 { | |
| 593 Lisp_Object framelist, frame; | |
| 594 | |
| 595 FOR_EACH_FRAME (framelist, frame) | |
| 596 if (!FRAME_TERMCAP_P (XFRAME (frame))) | |
| 597 fs_register_fontset (XFRAME (frame), fontset_info); | |
| 598 } | |
| 599 | |
| 600 return Qnil; | |
| 601 } | |
| 602 | |
| 603 extern Lisp_Object Qfont; | |
| 604 Lisp_Object Qfontset; | |
| 605 | |
| 606 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 4, 0, | |
| 607 "Set FONTNAME for a font of CHARSET in fontset NAME on frame FRAME.\n\ | |
| 608 If FRAME is omitted or nil, all frames are affected.") | |
| 609 (name, charset_symbol, fontname, frame) | |
| 610 Lisp_Object name, charset_symbol, fontname, frame; | |
| 611 { | |
| 612 int charset; | |
| 613 Lisp_Object fullname, fontlist; | |
| 614 | |
| 615 (*check_window_system_func) (); | |
| 616 | |
| 617 CHECK_STRING (name, 0); | |
| 618 CHECK_SYMBOL (charset_symbol, 1); | |
| 619 CHECK_STRING (fontname, 2); | |
| 620 if (!NILP (frame)) | |
| 621 CHECK_LIVE_FRAME (frame, 3); | |
| 622 | |
| 623 if ((charset = get_charset_id (charset_symbol)) < 0) | |
| 624 error ("Invalid charset: %s", XSYMBOL (charset_symbol)->name->data); | |
| 625 | |
|
21553
2d7afcd11b72
(find_ccl_program_func): New variable.
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
626 fullname = Fquery_fontset (name, Qnil); |
| 17052 | 627 if (NILP (fullname)) |
| 628 error ("Fontset \"%s\" does not exist", XSTRING (name)->data); | |
| 629 | |
| 630 /* If FRAME is not specified, we must, at first, update contents of | |
| 631 `global-fontset-alist' for a frame created in the future. */ | |
| 632 if (NILP (frame)) | |
| 633 { | |
| 634 Lisp_Object fontset_info = Fassoc (fullname, Vglobal_fontset_alist); | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
635 Lisp_Object tem = Fassq (charset_symbol, XCONS (fontset_info)->cdr); |
| 17052 | 636 |
| 637 if (NILP (tem)) | |
| 638 XCONS (fontset_info)->cdr | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
639 = Fcons (Fcons (charset_symbol, fontname), |
|
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
640 XCONS (fontset_info)->cdr); |
| 17052 | 641 else |
| 642 XCONS (tem)->cdr = fontname; | |
| 643 } | |
| 644 | |
| 645 /* Then, update information in the specified frame or all existing | |
| 646 frames. */ | |
| 647 { | |
| 648 Lisp_Object framelist, tem; | |
| 649 | |
| 650 FOR_EACH_FRAME (framelist, tem) | |
| 651 if (!FRAME_TERMCAP_P (XFRAME (tem)) | |
| 652 && (NILP (frame) || EQ (frame, tem))) | |
| 653 { | |
| 654 FRAME_PTR f = XFRAME (tem); | |
| 655 int fontset = fs_query_fontset (f, XSTRING (fullname)->data); | |
| 656 struct fontset_info *fontsetp | |
| 657 = FRAME_FONTSET_DATA (f)->fontset_table[fontset]; | |
| 658 | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
659 if (fontsetp->fontname[charset]) |
|
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
660 xfree (fontsetp->fontname[charset]); |
|
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
661 fontsetp->fontname[charset] |
| 17052 | 662 = (char *) xmalloc (XSTRING (fontname)->size + 1); |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
663 bcopy (XSTRING (fontname)->data, fontsetp->fontname[charset], |
| 17052 | 664 XSTRING (fontname)->size + 1); |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
665 fontsetp->font_indexes[charset] = FONT_NOT_OPENED; |
| 17052 | 666 |
| 667 if (charset == CHARSET_ASCII) | |
| 668 { | |
| 669 Lisp_Object font_param = Fassq (Qfont, Fframe_parameters (tem)); | |
| 670 | |
| 671 if (set_frame_fontset_func | |
| 672 && !NILP (font_param) | |
| 673 && !strcmp (XSTRING (fullname)->data, | |
| 674 XSTRING (XCONS (font_param)->cdr)->data)) | |
| 675 /* This fontset is the default fontset on frame TEM. | |
| 676 We may have to resize this frame because of new | |
| 677 ASCII font. */ | |
| 678 (*set_frame_fontset_func) (f, fullname, Qnil); | |
| 679 } | |
| 680 } | |
| 681 } | |
| 682 | |
| 683 return Qnil; | |
| 684 } | |
| 685 | |
| 686 DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0, | |
| 687 "Return information about a font named NAME on frame FRAME.\n\ | |
| 688 If FRAME is omitted or nil, use the selected frame.\n\ | |
| 689 The returned value is a vector of OPENED-NAME, FULL-NAME, CHARSET, SIZE,\n\ | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
690 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,\n\ |
| 17052 | 691 where\n\ |
| 692 OPENED-NAME is the name used for opening the font,\n\ | |
| 693 FULL-NAME is the full name of the font,\n\ | |
| 694 CHARSET is the charset displayed by the font,\n\ | |
| 695 SIZE is the minimum bound width of the font,\n\ | |
| 696 HEIGHT is the height of the font,\n\ | |
| 697 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,\n\ | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
698 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling\n\ |
|
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
699 how to compose characters.\n\ |
| 17052 | 700 If the named font is not yet loaded, return nil.") |
| 701 (name, frame) | |
| 702 Lisp_Object name, frame; | |
| 703 { | |
| 704 FRAME_PTR f; | |
| 705 struct font_info *fontp; | |
| 706 Lisp_Object info; | |
| 707 | |
| 708 (*check_window_system_func) (); | |
| 709 | |
| 710 CHECK_STRING (name, 0); | |
| 711 if (NILP (frame)) | |
| 712 f = selected_frame; | |
| 713 else | |
| 714 { | |
| 715 CHECK_LIVE_FRAME (frame, 1); | |
| 716 f = XFRAME (frame); | |
| 717 } | |
| 718 | |
| 719 if (!query_font_func) | |
| 720 error ("Font query function is not supported"); | |
| 721 | |
| 722 fontp = (*query_font_func) (f, XSTRING (name)->data); | |
| 723 if (!fontp) | |
| 724 return Qnil; | |
| 725 | |
|
18694
f54bacc800e5
(Ffont_info): Make vector of correct size.
Kenichi Handa <handa@m17n.org>
parents:
18346
diff
changeset
|
726 info = Fmake_vector (make_number (8), Qnil); |
| 17052 | 727 |
| 728 XVECTOR (info)->contents[0] = build_string (fontp->name); | |
| 729 XVECTOR (info)->contents[1] = build_string (fontp->full_name); | |
| 730 XVECTOR (info)->contents[2] = CHARSET_SYMBOL (fontp->charset); | |
| 731 XVECTOR (info)->contents[3] = make_number (fontp->size); | |
| 732 XVECTOR (info)->contents[4] = make_number (fontp->height); | |
| 733 XVECTOR (info)->contents[5] = make_number (fontp->baseline_offset); | |
| 734 XVECTOR (info)->contents[6] = make_number (fontp->relative_compose); | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
735 XVECTOR (info)->contents[7] = make_number (fontp->default_ascent); |
| 17052 | 736 |
| 737 return info; | |
| 738 } | |
| 739 | |
| 740 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0, | |
| 741 "Return information about a fontset named NAME on frame FRAME.\n\ | |
| 742 If FRAME is omitted or nil, use the selected frame.\n\ | |
| 743 The returned value is a vector of SIZE, HEIGHT, and FONT-LIST,\n\ | |
| 744 where\n\ | |
| 745 SIZE is the minimum bound width of ASCII font of the fontset,\n\ | |
| 746 HEIGHT is the height of the tallest font in the fontset, and\n\ | |
| 747 FONT-LIST is an alist of the format:\n\ | |
| 748 (CHARSET REQUESTED-FONT-NAME LOADED-FONT-NAME).\n\ | |
| 749 LOADED-FONT-NAME t means the font is not yet loaded, nil means the\n\ | |
| 750 loading failed.") | |
| 751 (name, frame) | |
| 752 Lisp_Object name, frame; | |
| 753 { | |
| 754 FRAME_PTR f; | |
| 755 int fontset; | |
| 756 struct fontset_info *fontsetp; | |
| 757 Lisp_Object info, val; | |
| 758 int i; | |
| 759 | |
| 760 (*check_window_system_func) (); | |
| 761 | |
| 762 CHECK_STRING(name, 0); | |
| 763 if (NILP (frame)) | |
| 764 f = selected_frame; | |
| 765 else | |
| 766 { | |
| 767 CHECK_LIVE_FRAME (frame, 1); | |
| 768 f = XFRAME (frame); | |
| 769 } | |
| 770 | |
| 771 fontset = fs_query_fontset (f, XSTRING (name)->data); | |
| 772 if (fontset < 0) | |
| 773 error ("Fontset \"%s\" does not exist", XSTRING (name)->data); | |
| 774 | |
| 775 info = Fmake_vector (make_number (3), Qnil); | |
| 776 | |
| 777 fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset]; | |
| 778 | |
| 779 XVECTOR (info)->contents[0] = make_number (fontsetp->size); | |
| 780 XVECTOR (info)->contents[1] = make_number (fontsetp->height); | |
| 781 val = Qnil; | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17112
diff
changeset
|
782 for (i = 0; i <= MAX_CHARSET; i++) |
| 17052 | 783 if (fontsetp->fontname[i]) |
| 784 { | |
| 785 int font_idx = fontsetp->font_indexes[i]; | |
| 786 Lisp_Object loaded; | |
| 787 | |
| 788 if (font_idx == FONT_NOT_OPENED) | |
| 789 loaded = Qt; | |
| 790 else if (font_idx == FONT_NOT_FOUND) | |
| 791 loaded = Qnil; | |
| 792 else | |
| 793 loaded | |
| 794 = build_string ((*get_font_info_func) (f, font_idx)->full_name); | |
| 795 val = Fcons (Fcons (CHARSET_SYMBOL (i), | |
| 796 Fcons (build_string (fontsetp->fontname[i]), | |
| 797 Fcons (loaded, Qnil))), | |
| 798 val); | |
| 799 } | |
| 800 XVECTOR (info)->contents[2] = val; | |
| 801 return info; | |
| 802 } | |
| 803 | |
| 21514 | 804 void |
| 17052 | 805 syms_of_fontset () |
| 806 { | |
| 807 int i; | |
| 808 | |
| 809 for (i = 0; i < 256; i++) | |
| 810 my_strcasetbl[i] = (i >= 'A' && i <= 'Z') ? i + 'a' - 'A' : i; | |
| 811 | |
| 812 if (!load_font_func) | |
| 813 /* Window system initializer should have set proper functions. */ | |
| 814 abort (); | |
| 815 | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
816 Qfontset = intern ("fontset"); |
| 17052 | 817 staticpro (&Qfontset); |
| 818 | |
| 819 Vcached_fontset_data = Qnil; | |
| 820 staticpro (&Vcached_fontset_data); | |
| 821 | |
| 822 DEFVAR_LISP ("global-fontset-alist", &Vglobal_fontset_alist, | |
| 823 "Internal data for fontset. Not for external use.\n\ | |
| 824 This is an alist associating fontset names with the lists of fonts\n\ | |
| 825 contained in them.\n\ | |
| 826 Newly created frames make their own fontset database from here."); | |
| 827 Vglobal_fontset_alist = Qnil; | |
| 828 | |
| 829 DEFVAR_LISP ("font-encoding-alist", &Vfont_encoding_alist, | |
| 830 "Alist of fontname patterns vs corresponding encoding info.\n\ | |
| 831 Each element looks like (REGEXP . ENCODING-INFO),\n\ | |
| 832 where ENCODING-INFO is an alist of CHARSET vs ENCODING.\n\ | |
| 833 ENCODING is one of the following integer values:\n\ | |
| 834 0: code points 0x20..0x7F or 0x2020..0x7F7F are used,\n\ | |
| 835 1: code points 0xA0..0xFF or 0xA0A0..0xFFFF are used,\n\ | |
| 836 2: code points 0x20A0..0x7FFF are used,\n\ | |
| 837 3: code points 0xA020..0xFF7F are used."); | |
| 838 Vfont_encoding_alist = Qnil; | |
| 839 | |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
840 DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent, |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
841 "Char table of characters whose ascent values should be ignored.\n\ |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
842 If an entry for a character is non-nil, the ascent value of the glyph\n\ |
|
19282
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
843 is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font.\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
844 \n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
845 This affects how a composite character which contains\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
846 such a character is displayed on screen."); |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
847 Vuse_default_ascent = Qnil; |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
848 |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
849 DEFVAR_LISP ("ignore-relative-composition", &Vignore_relative_composition, |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
850 "Char table of characters which is not composed relatively.\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
851 If an entry for a character is non-nil, a composite character\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
852 which contains that character is displayed so that\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
853 the glyph of that character is put without considering\n\ |
|
09a1536debb4
(Vignore_relative_composition): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19172
diff
changeset
|
854 an ascent and descent value of a previous character."); |
|
17112
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
855 Vuse_default_ascent = Qnil; |
|
5c48ff325655
(syms_of_fontset): Intern Qfontset. Declare new lisp
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
856 |
|
19450
895dc2520755
(Valternate_fontname_alist): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19282
diff
changeset
|
857 DEFVAR_LISP ("alternate-fontname-alist", &Valternate_fontname_alist, |
|
895dc2520755
(Valternate_fontname_alist): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19282
diff
changeset
|
858 "Alist of fontname vs list of the alternate fontnames.\n\ |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
859 When a specified font name is not found, the corresponding\n\ |
|
19450
895dc2520755
(Valternate_fontname_alist): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19282
diff
changeset
|
860 alternate fontnames (if any) are tried instead."); |
|
895dc2520755
(Valternate_fontname_alist): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19282
diff
changeset
|
861 Valternate_fontname_alist = Qnil; |
|
17193
dc4562b0152a
(Valternative_fontname_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17190
diff
changeset
|
862 |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
863 DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist, |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
864 "Alist of fontset names vs the aliases."); |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
865 Vfontset_alias_alist = Qnil; |
|
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
866 |
|
17331
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
867 DEFVAR_LISP ("highlight-wrong-size-font", &Vhighlight_wrong_size_font, |
|
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
868 "*Non-nil means highlight characters shown in wrong size fonts somehow.\n\ |
|
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
869 The way to highlight them depends on window system on which Emacs runs.\n\ |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
870 On X11, a rectangle is shown around each such character."); |
|
18976
ebb3e71c6dfd
(syms_of_fontset): Set Vhighlight_wrong_size_font to Qnil.
Kenichi Handa <handa@m17n.org>
parents:
18694
diff
changeset
|
871 Vhighlight_wrong_size_font = Qnil; |
|
17331
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
872 |
|
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
873 DEFVAR_LISP ("clip-large-size-font", &Vclip_large_size_font, |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
874 "*Non-nil means characters shown in overlarge fonts are clipped.\n\ |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
875 The height of clipping area is the same as that of an ASCII character.\n\ |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
876 The width of the area is the same as that of an ASCII character,\n\ |
|
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
877 or twice as wide, depending on the character set's column-width.\n\ |
|
17730
4bbcc6804b5d
(Vfontset_alias_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17331
diff
changeset
|
878 \n\ |
|
19172
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
879 If the only font you have for a specific character set is too large,\n\ |
|
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
880 and clipping these characters makes them hard to read,\n\ |
|
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
881 you can set this variable to nil to display the characters without clipping.\n\ |
|
f3580f4e3587
(syms_of_fontset): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
18976
diff
changeset
|
882 The drawback is that you will get some garbage left on your screen."); |
|
17331
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
883 Vclip_large_size_font = Qt; |
|
f91b4d582897
(Vhighlight_wrong_size_font, Vclip_large_size_font):
Kenichi Handa <handa@m17n.org>
parents:
17193
diff
changeset
|
884 |
| 17052 | 885 defsubr (&Squery_fontset); |
| 886 defsubr (&Snew_fontset); | |
| 887 defsubr (&Sset_fontset_font); | |
| 888 defsubr (&Sfont_info); | |
| 889 defsubr (&Sfontset_info); | |
| 890 } |
