sachiel pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=2b1521888f1c20ee64438f3b0da1927516811c9f

commit 2b1521888f1c20ee64438f3b0da1927516811c9f
Author: Iván Briano <ivan.bri...@intel.com>
Date:   Thu Apr 17 16:58:43 2014 -0300

    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.
---
 src/bin/termiolink.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/termiolink.c b/src/bin/termiolink.c
index bd2433f..9e90b0f 100644
--- a/src/bin/termiolink.c
+++ b/src/bin/termiolink.c
@@ -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;

-- 


Reply via email to