X-Git-Url: https://git.danieliu.xyz/?p=surf.git;a=blobdiff_plain;f=surf.c;h=1ad5ace70aa58789a6ab44deb1eae899d85e582d;hp=830665adbe3799ce148c507b11f30507eaf9db16;hb=a69c41ccac3141784140852c9d3935049d188d0f;hpb=d02f73d9902b953e6d815856844c79e3755c26fd diff --git a/surf.c b/surf.c index 830665a..1ad5ace 100644 --- a/surf.c +++ b/surf.c @@ -577,12 +577,13 @@ loaduri(Client *c, const Arg *arg) { char *u, *rp; const char *uri = (char *)arg->v; Arg a = { .b = FALSE }; + struct stat st; if(strcmp(uri, "") == 0) return; /* In case it's a file path. */ - if(uri[0] == '/') { + if(stat(uri, &st) == 0) { rp = realpath(uri, NULL); u = g_strdup_printf("file://%s", rp); free(rp); @@ -889,11 +890,12 @@ processx(GdkXEvent *e, GdkEvent *event, gpointer d) { if(ev->atom == atoms[AtomFind]) { arg.b = TRUE; find(c, &arg); + return GDK_FILTER_REMOVE; - } - else if(ev->atom == atoms[AtomGo]) { + } else if(ev->atom == atoms[AtomGo]) { arg.v = getatom(c, AtomGo); loaduri(c, &arg); + return GDK_FILTER_REMOVE; } }