summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 44333d514c..7bb7aa0380 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -957,12 +957,15 @@ do_bang(
}
} while (trailarg != NULL);
- // Don't clear "prevcmd" if there is no command to run.
+ // Only set "prevcmd" if there is a command to run, otherwise keep te one
+ // we have.
if (STRLEN(newcmd) > 0)
{
vim_free(prevcmd);
prevcmd = newcmd;
}
+ else
+ free_newcmd = TRUE;
if (bangredo) // put cmd in redo buffer for ! command
{
@@ -986,6 +989,8 @@ do_bang(
*/
if (*p_shq != NUL)
{
+ if (free_newcmd)
+ vim_free(newcmd);
newcmd = alloc(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1);
if (newcmd == NULL)
return;