]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_find_ccl_program): Check also fontp->full_name.
authorKenichi Handa <handa@m17n.org>
Thu, 19 Oct 2000 06:55:02 +0000 (06:55 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 19 Oct 2000 06:55:02 +0000 (06:55 +0000)
src/xterm.c

index a7698218ebc9f2a09dc423c3cf8a1570b740fd83..9921ad03e7ffa7d18d1e57030b35e7412fe23b16 100644 (file)
@@ -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;
     }