aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl-core.c
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2009-10-25 14:08:35 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2009-10-25 14:08:35 -0600
commit1c28354f0e6e54395f494a79b4a43285f0dfa71f (patch)
tree5d97c3a75f510984d5e4a04837796720dd207be4 /uzbl-core.c
parent38b9b08b1e16c9f35801908722bfa1c5f68f3c7e (diff)
remove pointless cmd_{cookie,scheme}_handler()
Diffstat (limited to 'uzbl-core.c')
-rw-r--r--uzbl-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzbl-core.c b/uzbl-core.c
index 3ece965..b09b727 100644
--- a/uzbl-core.c
+++ b/uzbl-core.c
@@ -103,9 +103,9 @@ const struct var_name_to_ptr_t {
{ "load_start_handler", PTR_V_STR(uzbl.behave.load_start_handler, 1, NULL)},
{ "load_commit_handler", PTR_V_STR(uzbl.behave.load_commit_handler, 1, NULL)},
{ "download_handler", PTR_V_STR(uzbl.behave.download_handler, 1, NULL)},
- { "cookie_handler", PTR_V_STR(uzbl.behave.cookie_handler, 1, cmd_cookie_handler)},
+ { "cookie_handler", PTR_V_STR(uzbl.behave.cookie_handler, 1, NULL)},
{ "new_window", PTR_V_STR(uzbl.behave.new_window, 1, NULL)},
- { "scheme_handler", PTR_V_STR(uzbl.behave.scheme_handler, 1, cmd_scheme_handler)},
+ { "scheme_handler", PTR_V_STR(uzbl.behave.scheme_handler, 1, NULL)},
{ "fifo_dir", PTR_V_STR(uzbl.behave.fifo_dir, 1, cmd_fifo_dir)},
{ "socket_dir", PTR_V_STR(uzbl.behave.socket_dir, 1, cmd_socket_dir)},
{ "http_debug", PTR_V_INT(uzbl.behave.http_debug, 1, cmd_http_debug)},