mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
Fix two fringe bitmaps
* src/fringe.c (question_mark_bits, exclamation_mark_bits): Fix the numerical values. (Bug#40805)
This commit is contained in:
parent
bd0a8783a3
commit
9dd4ff6e9d
1 changed files with 2 additions and 2 deletions
|
|
@ -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: `<-'. */
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue