diff src/gui.c @ 4250:787df0fc6539 v7.3.876

updated for version 7.3.876 Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
author Bram Moolenaar <bram@vim.org>
date Wed, 03 Apr 2013 21:11:39 +0200
parents 0de969850c06
children 04736b4030ec
line wrap: on
line diff
--- a/src/gui.c
+++ b/src/gui.c
@@ -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