From da8e6d70e09c9c92c55b110ada1d3bcc63889a72 Mon Sep 17 00:00:00 2001 From: David Keijser Date: Mon, 30 May 2011 19:07:05 +0200 Subject: move variable hashtable to a more sane place --- src/uzbl-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/uzbl-core.c') diff --git a/src/uzbl-core.c b/src/uzbl-core.c index b235e9e..91a9cd0 100644 --- a/src/uzbl-core.c +++ b/src/uzbl-core.c @@ -147,7 +147,7 @@ expand(const char* s, guint recurse) { if(etype == EXP_SIMPLE_VAR || etype == EXP_BRACED_VAR) { - if( (c = g_hash_table_lookup(uzbl.comm.proto_var, ret)) ) { + if( (c = g_hash_table_lookup(uzbl.behave.proto_var, ret)) ) { if(c->type == TYPE_STR && *c->ptr.s != NULL) { g_string_append(buf, (gchar *)*c->ptr.s); } -- cgit v1.2.3