| tSome cleanup in style. - surf - customized build of surf, the suckless webkit … | |
| git clone git://src.adamsgaard.dk/surf | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit b3a4392923b26e81c4faa35907a4a2d071e2275f | |
| parent b1c5e594d135292bb7b1da426ae5959bfe788b57 | |
| Author: Christoph Lohmann <[email protected]> | |
| Date: Tue, 3 Feb 2015 17:17:04 +0100 | |
| Some cleanup in style. | |
| Diffstat: | |
| M surf.c | 4 ++-- | |
| 1 file changed, 2 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/surf.c b/surf.c | |
| t@@ -292,7 +292,7 @@ buttonrelease(WebKitWebView *web, GdkEventButton *e, GList… | |
| static void | |
| cleanup(void) { | |
| - if (diskcache) { | |
| + if(diskcache) { | |
| soup_cache_flush(diskcache); | |
| soup_cache_dump(diskcache); | |
| } | |
| t@@ -715,7 +715,7 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, C… | |
| case WEBKIT_LOAD_FINISHED: | |
| c->progress = 100; | |
| updatetitle(c); | |
| - if (diskcache) { | |
| + if(diskcache) { | |
| soup_cache_flush(diskcache); | |
| soup_cache_dump(diskcache); | |
| } |