diff options
Diffstat (limited to 'mixlib/mix_vm_command.c')
-rw-r--r-- | mixlib/mix_vm_command.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mixlib/mix_vm_command.c b/mixlib/mix_vm_command.c index 33919d5..f2abce9 100644 --- a/mixlib/mix_vm_command.c +++ b/mixlib/mix_vm_command.c @@ -590,7 +590,9 @@ cmd_edit_ (mix_vm_cmd_dispatcher_t *dis, const gchar *arg) else { gchar *cmd = g_strdup_printf (dis->editor, arg); + fputs (cmd, dis->out); system (cmd); + fputs (_(" ...done\n"), dis->out); g_free (cmd); return TRUE; } |