diff options
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 5e4eeb3bb64..4203411e888 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -10056,8 +10056,8 @@ x_query_font (f, fontname) | |||
| 10056 | 10056 | ||
| 10057 | for (i = 0; i < dpyinfo->n_fonts; i++) | 10057 | for (i = 0; i < dpyinfo->n_fonts; i++) |
| 10058 | if (dpyinfo->font_table[i].name | 10058 | if (dpyinfo->font_table[i].name |
| 10059 | && (!strcmp (dpyinfo->font_table[i].name, fontname) | 10059 | && (!strcasecmp (dpyinfo->font_table[i].name, fontname) |
| 10060 | || !strcmp (dpyinfo->font_table[i].full_name, fontname))) | 10060 | || !strcasecmp (dpyinfo->font_table[i].full_name, fontname))) |
| 10061 | return (dpyinfo->font_table + i); | 10061 | return (dpyinfo->font_table + i); |
| 10062 | return NULL; | 10062 | return NULL; |
| 10063 | } | 10063 | } |