tunfocus should return false; renaming cookie-file. - surf - customized build of surf, the suckless webkit browser
(HTM) git clone git://src.adamsgaard.dk/surf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 44511e25490498bc2a38adcfda1f4f6e25805d7a
(DIR) parent 38a098c81d1b9044e50dd80fa1794b3f63f29559
(HTM) Author: Enno Boland (tox) <tox@s01.de>
Date: Fri, 11 Sep 2009 08:12:08 +0200
unfocus should return false; renaming cookie-file.
Diffstat:
M surf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/surf.c b/surf.c
t@@ -601,7 +601,7 @@ setup(void) {
/* cookie persistance */
s = webkit_get_default_session();
- name = g_build_filename(workdir, "cookies.jar", NULL);
+ name = g_build_filename(workdir, "cookies.txt", NULL);
cookiejar = soup_cookie_jar_text_new(name, FALSE);
soup_session_add_feature(s, SOUP_SESSION_FEATURE(cookiejar));
}
t@@ -663,7 +663,7 @@ gboolean
unfocusbar(GtkWidget *w, GdkEventFocus *e, Client *c) {
hidesearch(c, NULL);
hideurl(c, NULL);
- return TRUE;
+ return FALSE;
}
void