aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/ex_cmds.c4
-rw-r--r--src/nvim/version.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index 1880cfeb78..3278de3561 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -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;
}
}
}
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 586400e5de..2324104d4f 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -285,7 +285,7 @@ static int included_patches[] = {
455,
454,
//453 NA
- //452,
+ 452,
//451,
//450,
449,