billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=3738402a9dacec57407d54857a0455a66bf6cee2

commit 3738402a9dacec57407d54857a0455a66bf6cee2
Author: Boris Faure <bill...@gmail.com>
Date:   Sun Aug 9 14:19:50 2015 +0200

    fix wrong condition. CID1315743
---
 src/bin/termiolink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termiolink.c b/src/bin/termiolink.c
index c571eea..19923ab 100644
--- a/src/bin/termiolink.c
+++ b/src/bin/termiolink.c
@@ -180,7 +180,7 @@ _termio_link_find(Evas_Object *obj, int cx, int cy,
 
              if ((end == endmatch) ||
                  ((!escaped) && (isspace(end)) &&
-                  ((end != '\n') || (end != '\r'))))
+                  ((end != '\n') && (end != '\r'))))
                {
                   goforward = EINA_FALSE;
                   coord_back(&x2, &y2, w, h);

-- 


Reply via email to