aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c6
1 files 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)
13191 elt = XCAR (list); 13191 elt = XCAR (list);
13192 if (CONSP (elt) 13192 if (CONSP (elt)
13193 && STRINGP (XCAR (elt)) 13193 && STRINGP (XCAR (elt))
13194 && (fast_c_string_match_ignore_case (XCAR (elt), fontp->name) 13194 && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
13195 >= 0)) 13195 >= 0)
13196 || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name)
13197 >= 0)))
13196 break; 13198 break;
13197 } 13199 }
13198 13200