diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-09-19 22:05:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-09-19 22:05:53 +0200 |
commit | eb21e4ccf5453ecd289e9f7e09fa27a978fc0360 (patch) | |
tree | f019539cd976824c1e4287bf16c84ace686a2d73 /src/ex_cmds.c | |
parent | 1ecfd9cb09d7cd2231940a519c1af36d9636966a (diff) | |
download | vim-eb21e4ccf5453ecd289e9f7e09fa27a978fc0360.zip |
updated for version 7.4.452
Problem: Can't build with tiny features. (Tony Mechelynck)
Solution: Use "return" instead of "break".
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 4ae996c94..afc215459 100644 --- 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; } } } |