aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2020-04-25 12:11:57 +0300
committerEli Zaretskii2020-04-25 12:11:57 +0300
commit9dd4ff6e9d597d5c0dadbcd5910ae2cb1f8bd258 (patch)
treebde194bf283dda40fccd5817b87dcae4f78bb295 /src
parentbd0a8783a353d11467bf3f5272efd8a6de07b9e0 (diff)
downloademacs-9dd4ff6e9d597d5c0dadbcd5910ae2cb1f8bd258.tar.gz
emacs-9dd4ff6e9d597d5c0dadbcd5910ae2cb1f8bd258.zip
Fix two fringe bitmaps
* src/fringe.c (question_mark_bits, exclamation_mark_bits): Fix the numerical values. (Bug#40805)
Diffstat (limited to 'src')
-rw-r--r--src/fringe.c4
1 files 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
101 ...xx... 101 ...xx...
102*/ 102*/
103static unsigned short question_mark_bits[] = { 103static unsigned short question_mark_bits[] = {
104 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; 104 0x3c, 0x7e, 0xc3, 0xc3, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18};
105 105
106/* An exclamation mark. */ 106/* An exclamation mark. */
107/* 107/*
@@ -117,7 +117,7 @@ static unsigned short question_mark_bits[] = {
117 ...XX... 117 ...XX...
118*/ 118*/
119static unsigned short exclamation_mark_bits[] = { 119static unsigned short exclamation_mark_bits[] = {
120 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18}; 120 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18};
121 121
122/* An arrow like this: `<-'. */ 122/* An arrow like this: `<-'. */
123/* 123/*