aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-02 23:01:29 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-02 23:01:29 +0200
commitc77c6157cd33eeff6b0c0e3cb37d36dd13c2c34e (patch)
treef50d6b5ab1138d2faa5e6edefe5b37fd57e94625
parentef63c461326460f5a757c4ff1a79e2086a6a64b6 (diff)
make output from bindings nicer
-rw-r--r--uzbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uzbl.c b/uzbl.c
index b9e7876..da81fb3 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -778,7 +778,7 @@ add_binding (const gchar *key, const gchar *act) {
return;
//Debug:
- printf ("@%s@ @%s@ @%s@\n", key, parts[0], parts[1]);
+ printf ("Binding %-10s : %s\n", key, act);
action = new_action(parts[0], parts[1]);
g_hash_table_insert(bindings, g_strdup(key), action);