diff options
| author | Eli Zaretskii | 2022-09-01 08:56:30 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-09-01 08:56:30 +0300 |
| commit | 67b85decc7702c24f2904e60e3eecfc2bfca5ab6 (patch) | |
| tree | 1f60ee923ce9a80ddc264709ea30bce571299486 /src | |
| parent | d35ab73ff778df26f331e132ce5d631c8e9584a6 (diff) | |
| download | emacs-67b85decc7702c24f2904e60e3eecfc2bfca5ab6.tar.gz emacs-67b85decc7702c24f2904e60e3eecfc2bfca5ab6.zip | |
; * src/xdisp.c (lookup_glyphless_char_display): Fix last merge.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 8 |
1 files changed, 1 insertions, 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) | |||
| 7842 | && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1) | 7842 | && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1) |
| 7843 | { | 7843 | { |
| 7844 | if (c >= 0) | 7844 | if (c >= 0) |
| 7845 | { | 7845 | glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c); |
| 7846 | glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c); | ||
| 7847 | if (CONSP (glyphless_method)) | ||
| 7848 | glyphless_method = FRAME_WINDOW_P (it->f) | ||
| 7849 | ? XCAR (glyphless_method) | ||
| 7850 | : XCDR (glyphless_method); | ||
| 7851 | } | ||
| 7852 | else | 7846 | else |
| 7853 | glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0]; | 7847 | glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0]; |
| 7854 | 7848 | ||