# HG changeset patch # User Kenichi Handa # Date 1218025211 0 # Node ID 53bcf54737b244365be75429a0f83fa81b7ed984 # Parent 978f82d20794624c24793c93f89e421b6635cc5d (xfont_list_family): Return a list of symbols, not strings. diff -r 978f82d20794 -r 53bcf54737b2 src/xfont.c --- a/src/xfont.c Wed Aug 06 12:19:35 2008 +0000 +++ b/src/xfont.c Wed Aug 06 12:20:11 2008 +0000 @@ -473,8 +473,8 @@ continue; last_len = p1 - p0; last_family = p0; - family = make_unibyte_string (p0, last_len); - if (NILP (Fassoc_string (family, list, Qt))) + family = font_intern_prop (p0, last_len, 1); + if (NILP (assq_no_quit (family, list))) list = Fcons (family, list); }