comparison src/frame.c @ 90486:f0ccc964a392

(x_set_font) [USE_FONT_BACKEND]: Fix argument to font_open_by_name.
author Kenichi Handa <handa@m17n.org>
date Tue, 20 Jun 2006 01:17:23 +0000
parents 9430e7e49983
children 8a8e69664178
comparison
equal deleted inserted replaced
90485:36209537eac9 90486:f0ccc964a392
3090 font_object = font_open_by_name (f, SDATA (arg)); 3090 font_object = font_open_by_name (f, SDATA (arg));
3091 else if (fontset > 0) 3091 else if (fontset > 0)
3092 { 3092 {
3093 Lisp_Object ascii_font = fontset_ascii (fontset); 3093 Lisp_Object ascii_font = fontset_ascii (fontset);
3094 3094
3095 font_object = font_open_by_name (f, SDATA (arg)); 3095 font_object = font_open_by_name (f, SDATA (ascii_font));
3096 } 3096 }
3097 } 3097 }
3098 else 3098 else
3099 font_object = arg; 3099 font_object = arg;
3100 3100