diff --git a/src/bin/termiolink.c b/src/bin/termiolink.c index 4bd6c847..6d84f19f 100644 --- a/src/bin/termiolink.c +++ b/src/bin/termiolink.c @@ -76,12 +76,14 @@ _termio_link_find(Evas_Object *obj, int cx, int cy, int *x1r, int *y1r, int *x2r } else if ((isspace(s[0])) || (s[0] == '"') || + (s[0] == '`') || (s[0] == '\'') || (s[0] == '<') || (s[0] == '=')) { if (s[0] == '"') endmatch = '"'; else if (s[0] == '\'') endmatch = '\''; + else if (s[0] == '`') endmatch = '\''; else if (s[0] == '<') endmatch = '>'; if ((!strncasecmp((s + 1), "www.", 4)) || (!strncasecmp((s + 1), "ftp.", 4)) || diff --git a/src/bin/termptydbl.c b/src/bin/termptydbl.c index c490b1dd..701d2488 100644 --- a/src/bin/termptydbl.c +++ b/src/bin/termptydbl.c @@ -11,7 +11,7 @@ _termpty_is_dblwidth_get(Termpty *ty, int g) // check for east asian full-width (F), half-width (H), wide (W), // narrow (Na) or ambiguous (A) codepoints // ftp://ftp.unicode.org/Public/UNIDATA/EastAsianWidth.txt - + // optimize for latin1 non-ambiguous if (g <= 0xa0) return EINA_FALSE;