From 9dd4ff6e9d597d5c0dadbcd5910ae2cb1f8bd258 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 25 Apr 2020 12:11:57 +0300 Subject: [PATCH] Fix two fringe bitmaps * src/fringe.c (question_mark_bits, exclamation_mark_bits): Fix the numerical values. (Bug#40805) --- src/fringe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fringe.c b/src/fringe.c index d8d80bb3fe9..fc4c738dc2d 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -101,7 +101,7 @@ struct fringe_bitmap ...xx... */ static unsigned short question_mark_bits[] = { - 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; + 0x3c, 0x7e, 0xc3, 0xc3, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; /* An exclamation mark. */ /* @@ -117,7 +117,7 @@ static unsigned short question_mark_bits[] = { ...XX... */ static unsigned short exclamation_mark_bits[] = { - 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18}; + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18}; /* An arrow like this: `<-'. */ /* -- 2.39.2