From: Kenichi Handa Date: Thu, 19 Oct 2000 06:55:02 +0000 (+0000) Subject: (x_find_ccl_program): Check also fontp->full_name. X-Git-Tag: emacs-pretest-21.0.90~761 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f2feff6362924f004452f7195f7f1e6f487a7bf;p=emacs.git (x_find_ccl_program): Check also fontp->full_name. --- diff --git a/src/xterm.c b/src/xterm.c index a7698218ebc..9921ad03e7f 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -13191,8 +13191,10 @@ x_find_ccl_program (fontp) elt = XCAR (list); if (CONSP (elt) && STRINGP (XCAR (elt)) - && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name) - >= 0)) + && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name) + >= 0) + || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name) + >= 0))) break; }