billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=e93b8cf6194f9867f74caeb773ea10ccd351dc4f
commit e93b8cf6194f9867f74caeb773ea10ccd351dc4f Author: Boris Faure <[email protected]> Date: Tue Mar 31 23:29:05 2020 +0200 termiolink: left strip spaces on emails --- src/bin/termiolink.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/bin/termiolink.c b/src/bin/termiolink.c index 8a0696b..c9e9960 100644 --- a/src/bin/termiolink.c +++ b/src/bin/termiolink.c @@ -333,13 +333,7 @@ termio_link_find(const Evas_Object *obj, int cx, int cy, { int old_txtlen = txtlen; res = _txt_prev_at(ty, &new_x1, &new_y1, txt, &txtlen); - if ((res != 0) || (txtlen == 0)) - { - goback = EINA_FALSE; - goforward = EINA_TRUE; - break; - } - if (txt[0] != '\\') + if ((res != 0) || (txtlen == 0) || (txt[0] != '\\')) { ty_sb_lskip(&sb, old_txtlen); goback = EINA_FALSE; --
