Skip to content

Commit c6a45c3

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents ff4538f + b26592a commit c6a45c3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/gui.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2162,8 +2162,7 @@ gui_outstr(char_u *s, int len)
21622162
if (this_len > len)
21632163
this_len = len; // don't include following composing char
21642164
}
2165-
else
2166-
if (gui.col + len > Columns)
2165+
else if (gui.col + len > Columns)
21672166
this_len = Columns - gui.col;
21682167
else
21692168
this_len = len;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
50,
753755
/**/
754756
49,
755757
/**/

0 commit comments

Comments
 (0)