Introduction
Introduction Statistics Contact Development Disclaimer Help
tapply nick's patch removing unused variable and parameters - surf - customized…
git clone git://src.adamsgaard.dk/surf
Log
Files
Refs
README
LICENSE
---
commit d4b030eeb4e7dc85853855eff0a1ccb9378c7b1d
parent 101f2d6455272c067f024e9945d05733cd8d71ca
Author: pancake <unknown>
Date: Mon, 11 Jun 2012 16:45:48 +0200
apply nick's patch removing unused variable and parameters
Diffstat:
M surf.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
---
diff --git a/surf.c b/surf.c
t@@ -150,7 +150,7 @@ cleanup(void) {
}
void
-evalscript(WebKitWebFrame *frame, JSContextRef js, char *script, char* scriptn…
+evalscript(JSContextRef js, char *script, char* scriptname) {
JSStringRef jsscript, jsscriptname;
JSValueRef exception = NULL;
t@@ -162,12 +162,12 @@ evalscript(WebKitWebFrame *frame, JSContextRef js, char …
}
void
-runscript(WebKitWebFrame *frame, JSContextRef js) {
+runscript(WebKitWebFrame *frame) {
char *script;
GError *error;
if(g_file_get_contents(scriptfile, &script, NULL, &error)) {
- evalscript(frame, webkit_web_frame_get_global_context(frame), …
+ evalscript(webkit_web_frame_get_global_context(frame), script,…
}
}
t@@ -333,10 +333,8 @@ geturi(Client *c) {
void
gotheaders(SoupMessage *msg, gpointer v) {
- SoupURI *uri;
GSList *l, *p;
- uri = soup_message_get_uri(msg);
for(p = l = soup_cookies_from_response(msg); p;
p = g_slist_next(p)) {
setcookie((SoupCookie *)p->data);
t@@ -522,7 +520,7 @@ newclient(void) {
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
webkit_web_view_set_full_content_zoom(c->view, TRUE);
frame = webkit_web_view_get_main_frame(c->view);
- runscript(frame, webkit_web_frame_get_global_context(frame));
+ runscript(frame);
settings = webkit_web_view_get_settings(c->view);
if(!(ua = getenv("SURF_USERAGENT")))
ua = useragent;
t@@ -784,7 +782,7 @@ spawn(Client *c, const Arg *arg) {
void
eval(Client *c, const Arg *arg) {
WebKitWebFrame *frame = webkit_web_view_get_main_frame(c->view);
- evalscript(frame, webkit_web_frame_get_global_context(frame), ((char *…
+ evalscript(webkit_web_frame_get_global_context(frame), ((char **)arg->…
}
void
t@@ -827,7 +825,7 @@ usage(void) {
void
windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSOb…
- runscript(frame, js);
+ runscript(frame);
}
void
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.