diff options
author | Boris Faure <billiob@gmail.com> | 2016-12-15 23:09:32 +0100 |
---|---|---|
committer | Boris Faure <billiob@gmail.com> | 2016-12-15 23:11:22 +0100 |
commit | 5af5ec084eeb717349f79e3a657873c48c423d82 (patch) | |
tree | 2da29bdf4769dbdc01f167b530dd3d8a0a3dcdd8 | |
parent | termptyesc: add some debug (diff) | |
download | terminology-5af5ec084eeb717349f79e3a657873c48c423d82.tar.gz |
termio: do nothing special when extracting text and .tab is set
-rw-r--r-- | src/bin/termio.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bin/termio.c b/src/bin/termio.c index 17f0b75..743b9f0 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -2131,12 +2131,6 @@ termio_selection_get(Evas_Object *obj, int c1x, int c1y, int c2x, int c2y, } break; } - else if (cells[x].att.tab) - { - if (ty_sb_add(&sb, "\t", 1) < 0) goto err; - x = ((x + 8) / 8) * 8; - x--; /* counter the ++ of the for loop */ - } else if (cells[x].codepoint == 0) { if (last0 < 0) last0 = x; |