about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichal Mazurek <akfaew@jasminek.net>2011-08-07 14:53:05 +0000
committerMichal Mazurek <akfaew@jasminek.net>2011-08-07 14:53:05 +0000
commitb63d29239446a531e8cef2a5e6ea861f38bbc96f (patch)
tree5fa00e5485e9137175d0be4090240b4800cc37d1
parent17553f4295e8d40037b4cc5d1fd62bfd8af72c3e (diff)
downloadxombrero-b63d29239446a531e8cef2a5e6ea861f38bbc96f.tar.gz
Fix in buffer commands.
the bug is:
type in a buffer commad, delete tab - buffer command is not aborted, as
it should be.
-rw-r--r--xxxterm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 369fbe3..8608184 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -8137,6 +8137,7 @@ delete_tab(struct tab *t)
 	if (t == NULL)
 		return;
 
+	buffercmd_abort(t);
 	TAILQ_REMOVE(&tabs, t, entry);
 
 	/* Halt all webkit activity. */