diff options
Diffstat (limited to 'src/fontset.c')
| -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 3c7e931d121..c39d68a8ecf 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1916,7 +1916,7 @@ format is the same as above. */) | |||
| 1916 | if (!EQ (fontset, Vdefault_fontset)) | 1916 | if (!EQ (fontset, Vdefault_fontset)) |
| 1917 | { | 1917 | { |
| 1918 | tables[1] = Fmake_char_table (Qnil, Qnil); | 1918 | tables[1] = Fmake_char_table (Qnil, Qnil); |
| 1919 | XCHAR_TABLE (tables[0])->extras[0] = tables[1]; | 1919 | set_char_table_extras (tables[0], 0, tables[1]); |
| 1920 | fontsets[1] = Vdefault_fontset; | 1920 | fontsets[1] = Vdefault_fontset; |
| 1921 | } | 1921 | } |
| 1922 | 1922 | ||
| @@ -1979,7 +1979,7 @@ format is the same as above. */) | |||
| 1979 | if (c <= MAX_5_BYTE_CHAR) | 1979 | if (c <= MAX_5_BYTE_CHAR) |
| 1980 | char_table_set_range (tables[k], c, to, alist); | 1980 | char_table_set_range (tables[k], c, to, alist); |
| 1981 | else | 1981 | else |
| 1982 | XCHAR_TABLE (tables[k])->defalt = alist; | 1982 | set_char_table_defalt (tables[k], alist); |
| 1983 | 1983 | ||
| 1984 | /* At last, change each elements to font names. */ | 1984 | /* At last, change each elements to font names. */ |
| 1985 | for (; CONSP (alist); alist = XCDR (alist)) | 1985 | for (; CONSP (alist); alist = XCDR (alist)) |