Skip to content

Commit

Permalink
patch 9.0.0050: split else-of is confusing
Browse files Browse the repository at this point in the history
Problem:    Split else-of is confusing.
Solution:   Join the lines. (closes #10696)
  • Loading branch information
brammool committed Jul 12, 2022
1 parent 99af91e commit b26592a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/gui.c
Expand Up @@ -2131,8 +2131,7 @@ gui_outstr(char_u *s, int len)
if (this_len > len)
this_len = len; // don't include following composing char
}
else
if (gui.col + len > Columns)
else if (gui.col + len > Columns)
this_len = Columns - gui.col;
else
this_len = len;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -735,6 +735,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
50,
/**/
49,
/**/
Expand Down

0 comments on commit b26592a

Please sign in to comment.