diff options
| author | Joakim Verona | 2012-08-19 02:44:11 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-08-19 02:44:11 +0200 |
| commit | 5436d1df5e2ba0b4d4f72b03a1cd09b20403654b (patch) | |
| tree | 532faa27319b3bb199d414dc85e63a58246d30b0 /src/fontset.c | |
| parent | d02344322b0d2fea8dd9ad9dd0a6c70e058f967b (diff) | |
| parent | e757f1c6f393cf82057dbee0a4325b07f0fd55c4 (diff) | |
| download | emacs-5436d1df5e2ba0b4d4f72b03a1cd09b20403654b.tar.gz emacs-5436d1df5e2ba0b4d4f72b03a1cd09b20403654b.zip | |
upstream
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)) |