From 67b85decc7702c24f2904e60e3eecfc2bfca5ab6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 1 Sep 2022 08:56:30 +0300 Subject: [PATCH] ; * src/xdisp.c (lookup_glyphless_char_display): Fix last merge. --- src/xdisp.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 2c9dc63a389..80a07636951 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -7842,13 +7842,7 @@ lookup_glyphless_char_display (int c, struct it *it) && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1) { if (c >= 0) - { - glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c); - if (CONSP (glyphless_method)) - glyphless_method = FRAME_WINDOW_P (it->f) - ? XCAR (glyphless_method) - : XCDR (glyphless_method); - } + glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c); else glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0]; -- 2.39.2