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.
2 parents ff4538f + b26592a commit c6a45c3Copy full SHA for c6a45c3
src/gui.c
@@ -2162,8 +2162,7 @@ gui_outstr(char_u *s, int len)
2162
if (this_len > len)
2163
this_len = len; // don't include following composing char
2164
}
2165
- else
2166
- if (gui.col + len > Columns)
+ else if (gui.col + len > Columns)
2167
this_len = Columns - gui.col;
2168
else
2169
this_len = len;
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 50,
755
/**/
756
49,
757
0 commit comments