diff options
| author | Richard M. Stallman | 2003-05-17 12:46:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-05-17 12:46:53 +0000 |
| commit | 6117a9cde128e73ea4f85406d369ed3f37e3b43e (patch) | |
| tree | 5d7183e39e6532bd0e93f9664e6719aaf17e8a1e /src | |
| parent | 44356f63a3addda5adbb841cacc6b23d529c39fa (diff) | |
| download | emacs-6117a9cde128e73ea4f85406d369ed3f37e3b43e.tar.gz emacs-6117a9cde128e73ea4f85406d369ed3f37e3b43e.zip | |
(Ffontset_info): Pass new arg to map_char_table.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fontset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fontset.c b/src/fontset.c index d767548bb57..a23a146c76d 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1305,7 +1305,7 @@ If FRAME is omitted, it defaults to the currently selected frame. */) | |||
| 1305 | { | 1305 | { |
| 1306 | /* Merge FONTSET onto the default fontset. */ | 1306 | /* Merge FONTSET onto the default fontset. */ |
| 1307 | val = Fcopy_sequence (Vdefault_fontset); | 1307 | val = Fcopy_sequence (Vdefault_fontset); |
| 1308 | map_char_table (override_font_info, Qnil, fontset, val, 0, indices); | 1308 | map_char_table (override_font_info, Qnil, fontset, fontset, val, 0, indices); |
| 1309 | fontset = val; | 1309 | fontset = val; |
| 1310 | } | 1310 | } |
| 1311 | 1311 | ||
| @@ -1317,7 +1317,7 @@ If FRAME is omitted, it defaults to the currently selected frame. */) | |||
| 1317 | Fcons (XCDR (FONTSET_ASCII (fontset)), Qnil)), | 1317 | Fcons (XCDR (FONTSET_ASCII (fontset)), Qnil)), |
| 1318 | Qnil); | 1318 | Qnil); |
| 1319 | val = Fcons (val, val); | 1319 | val = Fcons (val, val); |
| 1320 | map_char_table (accumulate_font_info, Qnil, fontset, val, 0, indices); | 1320 | map_char_table (accumulate_font_info, Qnil, fontset, fontset, val, 0, indices); |
| 1321 | val = XCDR (val); | 1321 | val = XCDR (val); |
| 1322 | 1322 | ||
| 1323 | /* For each FONT-INFO, if CHAR_OR_RANGE (car part) is a generic | 1323 | /* For each FONT-INFO, if CHAR_OR_RANGE (car part) is a generic |