diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fringe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fringe.c b/src/fringe.c index 5e6c82984ef..4009a979962 100644 --- a/src/fringe.c +++ b/src/fringe.c | |||
| @@ -411,12 +411,12 @@ static unsigned short filled_square_bits[] = { | |||
| 411 | static unsigned short vertical_bar_bits[] = { | 411 | static unsigned short vertical_bar_bits[] = { |
| 412 | 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0}; | 412 | 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0}; |
| 413 | 413 | ||
| 414 | /* HBar cursor bitmap. A horisontal bar; 2 pixels high. */ | 414 | /* HBar cursor bitmap. A horizontal bar; 2 pixels high. */ |
| 415 | /* | 415 | /* |
| 416 | xxxxxxx. | 416 | xxxxxxx. |
| 417 | xxxxxxx. | 417 | xxxxxxx. |
| 418 | */ | 418 | */ |
| 419 | static unsigned short horisontal_bar_bits[] = { | 419 | static unsigned short horizontal_bar_bits[] = { |
| 420 | 0xfe, 0xfe}; | 420 | 0xfe, 0xfe}; |
| 421 | 421 | ||
| 422 | 422 | ||
| @@ -471,7 +471,7 @@ struct fringe_bitmap standard_bitmaps[] = | |||
| 471 | { FRBITS (filled_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, | 471 | { FRBITS (filled_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, |
| 472 | { FRBITS (hollow_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, | 472 | { FRBITS (hollow_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, |
| 473 | { FRBITS (vertical_bar_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, | 473 | { FRBITS (vertical_bar_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 }, |
| 474 | { FRBITS (horisontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 }, | 474 | { FRBITS (horizontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 }, |
| 475 | { FRBITS (empty_line_bits), 8, 3, ALIGN_BITMAP_TOP, 0 }, | 475 | { FRBITS (empty_line_bits), 8, 3, ALIGN_BITMAP_TOP, 0 }, |
| 476 | }; | 476 | }; |
| 477 | 477 | ||