I have corrected indentations of ifdef/endif pair,
which might be just mistake.
Please check attached patch.
Thanks.
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
diff -r acf7368a2acc src/gui.c
--- a/src/gui.c Thu Mar 21 22:53:50 2013 +0100
+++ b/src/gui.c Wed Mar 27 08:26:10 2013 +0900
@@ -991,7 +991,7 @@
}
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_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