diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-04-03 21:11:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-04-03 21:11:39 +0200 |
commit | cdffbeae2b031160a479f24cfedacab926938e5d (patch) | |
tree | fb2bdace2c6d396aebbe39633655a8aa82676125 /src/gui.c | |
parent | 95a513511835b017479a513664eeed6d8899fa0d (diff) | |
download | vim-git-cdffbeae2b031160a479f24cfedacab926938e5d.tar.gz |
updated for version 7.3.876v7.3.876
Problem: #if indents are off.
Solution: Insert a space where appropriate. (Taro Muraoka)
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -991,7 +991,7 @@ gui_get_wide_font() } gui_mch_free_font(gui.wide_font); -#ifdef FEAT_GUI_GTK +# ifdef FEAT_GUI_GTK /* Avoid unnecessary overhead if 'guifontwide' is equal to 'guifont'. */ if (font != NOFONT && gui.norm_font != NOFONT && pango_font_description_equal(font, gui.norm_font)) @@ -1000,11 +1000,11 @@ gui_get_wide_font() gui_mch_free_font(font); } else -#endif +# endif gui.wide_font = font; -#ifdef FEAT_GUI_MSWIN +# ifdef FEAT_GUI_MSWIN gui_mch_wide_font_changed(); -#endif +# endif return OK; } #endif |