vim-patch:7.4.452

Problem:    Can't build with tiny features. (Tony Mechelynck)
Solution:   Use "return" instead of "break".

https://code.google.com/p/vim/source/detail?r=v7-4-452
This commit is contained in:
Florian Walch 2014-12-23 12:12:16 +01:00
parent 1e17904eb2
commit c4e0cd4418
2 changed files with 3 additions and 3 deletions

View File

@ -5645,14 +5645,14 @@ static sign_T *first_sign = NULL;
static int next_sign_typenr = 1;
/*
* ":helpclose": Close the help window
* ":helpclose": Close one help window
*/
void ex_helpclose(exarg_T *eap)
{
FOR_ALL_WINDOWS_IN_TAB(win, curtab) {
if (win->w_buffer->b_help) {
win_close(win, FALSE);
break;
return;
}
}
}

View File

@ -285,7 +285,7 @@ static int included_patches[] = {
455,
454,
//453 NA
//452,
452,
//451,
//450,
449,