emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 9dd4ff6: Fix two fringe bitmaps


From: Eli Zaretskii
Subject: master 9dd4ff6: Fix two fringe bitmaps
Date: Sat, 25 Apr 2020 05:13:26 -0400 (EDT)

branch: master
commit 9dd4ff6e9d597d5c0dadbcd5910ae2cb1f8bd258
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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 d8d80bb..fc4c738 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: `<-'.  */
 /*



reply via email to

[Prev in Thread] Current Thread [Next in Thread]