aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2009-07-06 19:44:44 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2009-07-06 19:44:44 -0600
commit9026bd0f9e80b52439a4efdd766a00b55c1d99c9 (patch)
treee028cd4b65c58d968402e440a5bef0c24a626a37 /uzbl.c
parente96c32bc6a6c627488df506b4e006197acf38d87 (diff)
test simple cmd_useragent
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uzbl.c b/uzbl.c
index 3a25cef..1d2a6c9 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -181,7 +181,7 @@ const struct {
/* construct a hash from the var_name_to_ptr array for quick access */
-static void
+void
make_var_to_name_hash() {
uzbl.comm.proto_var = g_hash_table_new(g_str_hash, g_str_equal);
while(n2v_p->name) {
@@ -1758,7 +1758,7 @@ cmd_modkey() {
}
}
-static void
+void
cmd_useragent() {
if (*uzbl.net.useragent == ' ') {
g_free (uzbl.net.useragent);
@@ -1793,7 +1793,7 @@ move_statusbar() {
return;
}
-static gboolean
+gboolean
set_var_value(gchar *name, gchar *val) {
uzbl_cmdprop *c = NULL;
char *endp = NULL;