Fix wrong copy/paste/replace

Long ago, a very wise wizard said that it's a good idea to match
delimiters to their corresponding endings, so let's do that, mmmkay.
This commit is contained in:
Iván Briano 2014-04-17 16:58:43 -03:00
parent 12f4dcfaf6
commit 2b1521888f
1 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ _termio_link_find(Evas_Object *obj, int cx, int cy,
{
case '"': endmatch = '"'; break;
case '\'': endmatch = '\''; break;
case '`': endmatch = '\''; break;
case '`': endmatch = '`'; break;
case '<': endmatch = '>'; break;
case '[': endmatch = ']'; break;
case '{': endmatch = '}'; break;
@ -149,7 +149,7 @@ _termio_link_find(Evas_Object *obj, int cx, int cy,
{
case '"': endmatch = '"'; break;
case '\'': endmatch = '\''; break;
case '`': endmatch = '\''; break;
case '`': endmatch = '`'; break;
case '<': endmatch = '>'; break;
case '[': endmatch = ']'; break;
case '{': endmatch = '}'; break;