aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Sylvester Johansson <scj@archlinux.us>2009-06-01 14:31:43 +0200
committerGravatar Sylvester Johansson <scj@archlinux.us>2009-06-01 14:31:43 +0200
commit0ef46333e1a68130afb16b038852de1344b0e499 (patch)
treec538c9f86dcedc8a6cafcec16cd09d4fe05d79e2
parent16bb4ad6493cb7e5b4c15014670106428085deb3 (diff)
fixed broken merge
-rw-r--r--uzbl.c26
-rw-r--r--uzbl.h3
2 files changed, 0 insertions, 29 deletions
diff --git a/uzbl.c b/uzbl.c
index ce24e99..bb11fcf 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -97,10 +97,7 @@ const struct {
/* variable name pointer to variable in code type dump callback function */
/* --------------------------------------------------------------------------------------- */
{ "uri", PTR(uzbl.state.uri, STR, 1, cmd_load_uri)},
-<<<<<<< HEAD:uzbl.c
-=======
{ "verbose", PTR(uzbl.state.verbose, INT, 1, NULL)},
->>>>>>> dieterbe/experimental:uzbl.c
{ "mode", PTR(uzbl.behave.mode, INT, 0, NULL)},
{ "inject_html", PTR(uzbl.behave.inject_html, STR, 0, cmd_inject_html)},
{ "base_url", PTR(uzbl.behave.base_url, STR, 1, NULL)},
@@ -612,11 +609,6 @@ static struct {char *name; Command command[2];} cmdlist[] =
{ "search_reverse", {search_reverse_text, NOSPLIT} },
{ "dehilight", {dehilight, 0} },
{ "toggle_insert_mode", {toggle_insert_mode, 0} },
-<<<<<<< HEAD:uzbl.c
- { "runcmd", {runcmd, NOSPLIT} },
- { "set", {set_var, NOSPLIT} },
- { "dump_config", {act_dump_config, 0} }
-=======
{ "set", {set_var, NOSPLIT} },
//{ "get", {get_var, NOSPLIT} },
{ "bind", {act_bind, NOSPLIT} },
@@ -626,7 +618,6 @@ static struct {char *name; Command command[2];} cmdlist[] =
{ "keycmd_bs", {keycmd_bs, 0} },
{ "chain", {chain, 0} },
{ "print", {print, NOSPLIT} }
->>>>>>> dieterbe/experimental:uzbl.c
};
static void
@@ -705,11 +696,6 @@ act_dump_config() {
}
static void
-act_dump_config() {
- dump_config();
-}
-
-static void
toggle_insert_mode(WebKitWebView *page, GArray *argv) {
(void)page;
@@ -2377,19 +2363,11 @@ static void
dump_key_hash(gpointer k, gpointer v, gpointer ud) {
(void) ud;
Action *a = v;
-<<<<<<< HEAD:uzbl.c
-
- printf("bind %s = %s %s\n", (char *)k ,
- (char *)a->name, a->param?(char *)a->param:"");
-}
-
-=======
printf("bind %s = %s %s\n", (char *)k ,
(char *)a->name, a->param?(char *)a->param:"");
}
->>>>>>> dieterbe/experimental:uzbl.c
static void
dump_config() {
g_hash_table_foreach(uzbl.comm.proto_var, dump_var_hash, NULL);
@@ -2446,10 +2424,6 @@ main (int argc, char* argv[]) {
uzbl.behave.insert_indicator = g_strdup("I");
uzbl.behave.cmd_indicator = g_strdup("C");
-<<<<<<< HEAD:uzbl.c
- setup_regex();
-=======
->>>>>>> dieterbe/experimental:uzbl.c
setup_scanner();
commands_hash ();
make_var_to_name_hash();
diff --git a/uzbl.h b/uzbl.h
index bbc1f39..846dad6 100644
--- a/uzbl.h
+++ b/uzbl.h
@@ -425,12 +425,9 @@ static void
set_var(WebKitWebView *page, GArray *argv);
static void
-<<<<<<< HEAD:uzbl.h
-=======
act_bind(WebKitWebView *page, GArray *argv);
static void
->>>>>>> dieterbe/experimental:uzbl.h
act_dump_config();
static void