mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
1e17904eb2
commit
c4e0cd4418
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -285,7 +285,7 @@ static int included_patches[] = {
|
|||||||
455,
|
455,
|
||||||
454,
|
454,
|
||||||
//453 NA
|
//453 NA
|
||||||
//452,
|
452,
|
||||||
//451,
|
//451,
|
||||||
//450,
|
//450,
|
||||||
449,
|
449,
|
||||||
|
Loading…
Reference in New Issue
Block a user