# HG changeset patch # User Kenichi Handa # Date 1211422914 0 # Node ID 5c007b5b6cd8355da35ead7a0019c2b905183d28 # Parent 4eed3c1f3e86c7b1d1e0bb189e7de3ce48c763fe (fontset_from_font, Ffontset_info): Add the 2nd arg in call of Ffont_xlfd_name. diff -r 4eed3c1f3e86 -r 5c007b5b6cd8 src/fontset.c --- a/src/fontset.c Thu May 22 02:21:05 2008 +0000 +++ b/src/fontset.c Thu May 22 02:21:54 2008 +0000 @@ -1602,7 +1602,7 @@ } fontset_spec = Fcopy_font_spec (font_spec); ASET (fontset_spec, FONT_REGISTRY_INDEX, alias); - name = Ffont_xlfd_name (fontset_spec); + name = Ffont_xlfd_name (fontset_spec, Qnil); if (NILP (name)) abort (); fontset = make_fontset (Qnil, name, Qnil); @@ -1905,7 +1905,7 @@ for (; CONSP (alist); alist = XCDR (alist)) { elt = XCAR (alist); - XSETCAR (elt, Ffont_xlfd_name (XCAR (elt))); + XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil)); } } c = to + 1;