summaryrefslogtreecommitdiff
path: root/src/fringe.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-02-21 08:11:07 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-02-21 08:11:07 +0000
commit68a33afa3cb027beed1ff11d184357931fe06e1d (patch)
tree5fd036fc8fffbb69e3c5638b171ba38c4f58b8cf /src/fringe.c
parent9fb446e3f1fcc75cf018fef830d7d660f425ae46 (diff)
downloademacs-68a33afa3cb027beed1ff11d184357931fe06e1d.tar.gz
(horizontal_bar_bits): Rename from `horisontal_bar_bits'.
(standard_bitmaps): Use it.
Diffstat (limited to 'src/fringe.c')
-rw-r--r--src/fringe.c6
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[] = {
static unsigned short vertical_bar_bits[] = {
0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0};
-/* HBar cursor bitmap. A horisontal bar; 2 pixels high. */
+/* HBar cursor bitmap. A horizontal bar; 2 pixels high. */
/*
xxxxxxx.
xxxxxxx.
*/
-static unsigned short horisontal_bar_bits[] = {
+static unsigned short horizontal_bar_bits[] = {
0xfe, 0xfe};
@@ -471,7 +471,7 @@ struct fringe_bitmap standard_bitmaps[] =
{ FRBITS (filled_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
{ FRBITS (hollow_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
{ FRBITS (vertical_bar_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
- { FRBITS (horisontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
+ { FRBITS (horizontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
{ FRBITS (empty_line_bits), 8, 3, ALIGN_BITMAP_TOP, 0 },
};