]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix two fringe bitmaps
authorEli Zaretskii <eliz@gnu.org>
Sat, 25 Apr 2020 09:11:57 +0000 (12:11 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Apr 2020 09:11:57 +0000 (12:11 +0300)
* src/fringe.c (question_mark_bits, exclamation_mark_bits): Fix
the numerical values.  (Bug#40805)

src/fringe.c

index d8d80bb3fe9bcc22a2274448ad72f49ae33d30b3..fc4c738dc2d7e5f9b27f169e0e38f45132fa9539 100644 (file)
@@ -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: `<-'.  */
 /*