X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/226c3633fdc0a259aa73aa9e6555cd42dd9f168c..32bd425074e32184d3d4d9f985fd1a60814d78b2:/src/fringe.c diff --git a/src/fringe.c b/src/fringe.c index 4ab9c77032..97d03a2bfa 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -107,6 +107,22 @@ struct fringe_bitmap static unsigned short question_mark_bits[] = { 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18}; +/* An exclamation mark. */ +/* + ...XX... + ...XX... + ...XX... + ...XX... + ...XX... + ...XX... + ...XX... + ........ + ...XX... + ...XX... +*/ +static unsigned short exclamation_mark_bits[] = { + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18}; + /* An arrow like this: `<-'. */ /* ...xx... @@ -432,6 +448,7 @@ static struct fringe_bitmap standard_bitmaps[] = { { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */ { FRBITS (question_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, + { FRBITS (exclamation_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, { FRBITS (left_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, { FRBITS (right_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, { FRBITS (up_arrow_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },