emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

typo fixes for recent Emacs change


From: Giorgos Keramidas
Subject: typo fixes for recent Emacs change
Date: Tue, 21 Feb 2006 01:21:51 +0200

Hi Kim

the correct spelling for 'horizontal' is with a 'z', so you may want to
commit this diff:

%%%
Index: src/fringe.c
===================================================================
--- src/fringe.c        (revision 29)
+++ src/fringe.c        (working copy)
@@ -411,12 +411,12 @@
 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 @@
   { 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 },
 };
 
Index: src/ChangeLog
===================================================================
--- src/ChangeLog       (revision 29)
+++ src/ChangeLog       (working copy)
@@ -28,7 +28,7 @@
        (hollow_rectangle_bits): Rename from hollow_box_cursor_bits.
        (filled_square_bits): Added.
        (vertical_bar_bits): Rename from bar_cursor_bits.
-       (horisontal_bar_bits): Rename from hbar_cursor_bits.
+       (horizontal_bar_bits): Rename from hbar_cursor_bits.
        (empty_line_bits): Rename from zv_bits.
        (standard_bitmaps): Update to use new names.
        (draw_fringe_bitmap_1): Make static.
Index: lisp/fringe.el
===================================================================
--- lisp/fringe.el      (revision 29)
+++ lisp/fringe.el      (working copy)
@@ -59,7 +59,7 @@
                   left-bracket right-bracket
                   filled-rectangle hollow-rectangle
                   filled-square hollow-square
-                  vertical-bar horisontal-bar
+                  vertical-bar horizontal-bar
                   empty-line))
        (bn 1))
     (while bitmaps
@@ -86,7 +86,7 @@
       '((box . filled-rectangle)
        (hollow . hollow-rectangle)
        (bar . vertical-bar)
-       (hbar . horisontal-bar)
+       (hbar . horizontal-bar)
        (hollow-small . hollow-square)))
 
 ;; Control presence of fringes
Index: lispref/windows.texi
===================================================================
--- lispref/windows.texi        (revision 26)
+++ lispref/windows.texi        (working copy)
@@ -2196,7 +2196,7 @@
 
 If the root window is not split, @var{root} is the root window itself.
 Otherwise, @var{root} is a list @code{(@var{dir} @var{edges} @var{w1}
address@hidden ...)} where @var{dir} is @code{nil} for a horisontal split,
address@hidden ...)} where @var{dir} is @code{nil} for a horizontal split,
 and @code{t} for a vertical split, @var{edges} gives the combined size and
 position of the subwindows in the split, and the rest of the elements
 are the subwindows in the split.  Each of the subwindows may again be
Index: lispref/display.texi
===================================================================
--- lispref/display.texi        (revision 29)
+++ lispref/display.texi        (working copy)
@@ -2896,7 +2896,7 @@
 @code{left-bracket}, @code{right-bracket},
 @code{filled-rectangle}, @code{hollow-rectangle},
 @code{filled-square}, @code{hollow-square},
address@hidden, @code{horisontal-bar},
address@hidden, @code{horizontal-bar},
 @code{empty-line},
 @code{question-mark}.
 @end table
@@ -2951,7 +2951,7 @@
 @item Standard bitmaps for displaying the cursor in right fringe:
 @code{filled-rectangle}, @code{hollow-rectangle},
 @code{filled-square}, @code{hollow-square},
address@hidden, @code{horisontal-bar}.
address@hidden, @code{horizontal-bar}.
 @end table
 
 
%%%




reply via email to

[Prev in Thread] Current Thread [Next in Thread]