diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-26 06:24:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-26 06:24:45 +0200 |
commit | 644044794ea55fdee8599ee1e861234216c20402 (patch) | |
tree | 9dfe2fa4bae0f9914f0d12f7a502aaffc1795c43 /src/gui_gtk_x11.c | |
parent | 0eda7ac7f897433c9d346743bf38fcd291673070 (diff) | |
download | vim-git-644044794ea55fdee8599ee1e861234216c20402.tar.gz |
Various small fixes from Dominique Pelle.
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r-- | src/gui_gtk_x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 23651bdb6..84aa710c0 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -4013,7 +4013,7 @@ gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) /* * FIXME: dirty trick: Because the gui_get_base_height() doesn't include * the toolbar and menubar for GTK, we subtract them from the screen - * hight, so that the window size can be made to fit on the screen. + * height, so that the window size can be made to fit on the screen. * This should be completely changed later. */ *screen_w -= get_menu_tool_width(); @@ -4818,7 +4818,7 @@ count_cluster_cells(char_u *s, PangoItem *item, * If ink_rect.x is negative Pango apparently has taken care of the composing * by itself. Actually setting x_offset = 0 should be sufficient then, but due * to problems with composing from different fonts we still need to fine-tune - * x_offset to avoid uglyness. + * x_offset to avoid ugliness. * * If ink_rect.x is not negative, force overstriking by pointing x_offset to * the position of the previous glyph. Apparently this happens only with old |