summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-04-03 21:11:39 +0200
committerBram Moolenaar <bram@vim.org>2013-04-03 21:11:39 +0200
commite0e43886eba8c4bc901c3c0aa3994104c4709d8e (patch)
treeed1fbc323d7a474823ebaf15ce4711f97a295ed0
parenta901e9434cdb8738ce0acdcfd155ab86507fef70 (diff)
downloadvim-e0e43886eba8c4bc901c3c0aa3994104c4709d8e.tar.gz
updated for version 7.3.876v7.3.876v7-3-876
Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
-rw-r--r--src/gui.c8
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/gui.c b/src/gui.c
index 6e5d58b5..1c60b7a6 100644
--- 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
diff --git a/src/version.c b/src/version.c
index f0d5e00d..a68eb13d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 876,
+/**/
875,
/**/
874,