# HG changeset patch # User Bram Moolenaar # Date 1411157153 -7200 # Node ID 78aad99db7627a19574d10415780ded69936d7d7 # Parent 54b031246e2286f0256ee6208b422c6d37c290dd updated for version 7.4.452 Problem: Can't build with tiny features. (Tony Mechelynck) Solution: Use "return" instead of "break". diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5900,7 +5900,7 @@ erret: } /* - * ":helpclose": Close the help window + * ":helpclose": Close one help window */ void ex_helpclose(eap) @@ -5913,7 +5913,7 @@ ex_helpclose(eap) if (win->w_buffer->b_help) { win_close(win, FALSE); - break; + return; } } } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 452, +/**/ 451, /**/ 450,