diff options
author | marco <marco@conformal.com> | 2011-11-03 16:48:06 -0500 |
---|---|---|
committer | marco <marco@conformal.com> | 2011-11-03 16:48:24 -0500 |
commit | fd70f51b84dccb2dc2d34cc62a9ac2da164f2515 (patch) | |
tree | b8f4061a074ce514a89f9ad91c1d3aa8e307e0d3 | |
parent | 18777f218d7e363e3f76e091a7124f08a98573ed (diff) | |
download | xombrero-fd70f51b84dccb2dc2d34cc62a9ac2da164f2515.tar.gz |
Missed one more cmd_hide.
-rw-r--r-- | xxxterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c index 2541e39..8658086 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -5330,8 +5330,9 @@ cmd_activate_cb(GtkEntry *entry, struct tab *t) /* XXX history for link following? */ } else if (c[0] == ':') { history_add(&chl, command_file, s, &cmd_history_count); - cmd_execute(t, s); /* can't call hide_cmd after cmd_execute */ + hide_cmd(t); + cmd_execute(t, s); return; } |