From 9f2feff6362924f004452f7195f7f1e6f487a7bf Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 19 Oct 2000 06:55:02 +0000 Subject: [PATCH] (x_find_ccl_program): Check also fontp->full_name. --- src/xterm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; } -- 2.39.5