]> git.eshelyaron.com Git - emacs.git/commitdiff
(horizontal_bar_bits): Rename from `horisontal_bar_bits'.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 21 Feb 2006 08:11:07 +0000 (08:11 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 21 Feb 2006 08:11:07 +0000 (08:11 +0000)
(standard_bitmaps): Use it.

src/fringe.c

index 5e6c82984efa8cce7b36056699ae8308cdf6c946..4009a97996270f56db06393e994ea8834a76e9e5 100644 (file)
@@ -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 },
 };