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; static int next_sign_typenr = 1;
/* /*
* ":helpclose": Close the help window * ":helpclose": Close one help window
*/ */
void ex_helpclose(exarg_T *eap) void ex_helpclose(exarg_T *eap)
{ {
FOR_ALL_WINDOWS_IN_TAB(win, curtab) { FOR_ALL_WINDOWS_IN_TAB(win, curtab) {
if (win->w_buffer->b_help) { if (win->w_buffer->b_help) {
win_close(win, FALSE); win_close(win, FALSE);
break; return;
} }
} }
} }

View File

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