comparison src/font.c @ 90590:bad57814fca3

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Mon, 21 Aug 2006 12:51:20 +0000
parents 7c29515f7c2a
children bb9362e3a03b
comparison
equal deleted inserted replaced
90589:697dcc1df88d 90590:bad57814fca3
2391 for (; driver_list; driver_list = driver_list->next) 2391 for (; driver_list; driver_list = driver_list->next)
2392 if (driver_list->on 2392 if (driver_list->on
2393 && (NILP (ftype) || EQ (driver_list->driver->type, ftype))) 2393 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2394 { 2394 {
2395 Lisp_Object cache = driver_list->driver->get_cache (frame); 2395 Lisp_Object cache = driver_list->driver->get_cache (frame);
2396 Lisp_Object val, key; 2396 Lisp_Object key;
2397 2397
2398 xassert (CONSP (cache)); 2398 xassert (CONSP (cache));
2399 ASET (spec, FONT_TYPE_INDEX, driver_list->driver->type); 2399 ASET (spec, FONT_TYPE_INDEX, driver_list->driver->type);
2400 key = Fcons (spec, Qnil); 2400 key = Fcons (spec, Qnil);
2401 entity = assoc_no_quit (key, XCDR (cache)); 2401 entity = assoc_no_quit (key, XCDR (cache));