commit 10105c8b87a1e3e4c5b98100a6947f1c350561da
Author:     Quentin Rameau <[email protected]>
AuthorDate: Sun Nov 22 13:15:39 2015 +0100
Commit:     Quentin Rameau <[email protected]>
CommitDate: Sun Nov 22 13:15:39 2015 +0100

    Fix pasteuri()
    
    The uri check had been inverted.

diff --git a/surf.c b/surf.c
index 5043d33..5c9520f 100644
--- a/surf.c
+++ b/surf.c
@@ -1220,7 +1220,7 @@ void
 pasteuri(GtkClipboard *clipboard, const char *text, gpointer d)
 {
        Arg a = {.v = text };
-       if (!text)
+       if (text)
                loaduri((Client *) d, &a);
 }
 

Reply via email to