aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-29 20:25:53 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-29 20:25:53 +0200
commita147fd153338f3a25dc726a7448ca10941d867c6 (patch)
tree5f793eb32a46dca765314fa6e317b067e6500ef2 /uzbl.c
parente0e74bb34d1ce7ff52f28fccb4f0c7bdf6740e92 (diff)
fix for broken external keybinds
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uzbl.c b/uzbl.c
index 0829d0e..074d27a 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -446,7 +446,7 @@ key_press_cb (WebKitWebView* page, GdkEventKey* event)
//EXTERNAL BINDINGS
if((act = g_hash_table_lookup(external_bindings, event->string)) != NULL)
if (!insert_mode || (event->state == modmask)) {
- parse_command (act);
+ run_command (act, NULL);
result = TRUE;
}