diff options
| author | Kenichi Handa | 2008-05-22 02:21:54 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-05-22 02:21:54 +0000 |
| commit | 7ae2e7f020a969c423305e641db3a0327b77fdef (patch) | |
| tree | 37d65fb5c1caa450960f52a7e5f561751e4dfcde /src | |
| parent | 68eaeee49235eb135afa16761ba77eda49d79716 (diff) | |
| download | emacs-7ae2e7f020a969c423305e641db3a0327b77fdef.tar.gz emacs-7ae2e7f020a969c423305e641db3a0327b77fdef.zip | |
(fontset_from_font, Ffontset_info): Add the 2nd arg in
call of Ffont_xlfd_name.
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 92c9f2a2268..e2fafbb932f 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1602,7 +1602,7 @@ fontset_from_font (font_object) | |||
| 1602 | } | 1602 | } |
| 1603 | fontset_spec = Fcopy_font_spec (font_spec); | 1603 | fontset_spec = Fcopy_font_spec (font_spec); |
| 1604 | ASET (fontset_spec, FONT_REGISTRY_INDEX, alias); | 1604 | ASET (fontset_spec, FONT_REGISTRY_INDEX, alias); |
| 1605 | name = Ffont_xlfd_name (fontset_spec); | 1605 | name = Ffont_xlfd_name (fontset_spec, Qnil); |
| 1606 | if (NILP (name)) | 1606 | if (NILP (name)) |
| 1607 | abort (); | 1607 | abort (); |
| 1608 | fontset = make_fontset (Qnil, name, Qnil); | 1608 | fontset = make_fontset (Qnil, name, Qnil); |
| @@ -1905,7 +1905,7 @@ fontset. The format is the same as above. */) | |||
| 1905 | for (; CONSP (alist); alist = XCDR (alist)) | 1905 | for (; CONSP (alist); alist = XCDR (alist)) |
| 1906 | { | 1906 | { |
| 1907 | elt = XCAR (alist); | 1907 | elt = XCAR (alist); |
| 1908 | XSETCAR (elt, Ffont_xlfd_name (XCAR (elt))); | 1908 | XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil)); |
| 1909 | } | 1909 | } |
| 1910 | } | 1910 | } |
| 1911 | c = to + 1; | 1911 | c = to + 1; |