We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99af91e commit b26592aCopy full SHA for b26592a
src/gui.c
@@ -2131,8 +2131,7 @@ gui_outstr(char_u *s, int len)
2131
if (this_len > len)
2132
this_len = len; // don't include following composing char
2133
}
2134
- else
2135
- if (gui.col + len > Columns)
+ else if (gui.col + len > Columns)
2136
this_len = Columns - gui.col;
2137
else
2138
this_len = len;
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 50,
740
/**/
741
49,
742
0 commit comments