Skip to content

Commit

Permalink
updated for version 7.4.452
Browse files Browse the repository at this point in the history
Problem:    Can't build with tiny features. (Tony Mechelynck)
Solution:   Use "return" instead of "break".
  • Loading branch information
brammool committed Sep 19, 2014
1 parent 1ecfd9c commit eb21e4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ex_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -5900,7 +5900,7 @@ ex_help(eap)
}

/*
* ":helpclose": Close the help window
* ":helpclose": Close one help window
*/
void
ex_helpclose(eap)
Expand All @@ -5913,7 +5913,7 @@ ex_helpclose(eap)
if (win->w_buffer->b_help)
{
win_close(win, FALSE);
break;
return;
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,8 @@ static char *(features[]) =

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

0 comments on commit eb21e4c

Please sign in to comment.