From b39782fdcfdae01d20b9baa31330e141302c4361 Mon Sep 17 00:00:00 2001 From: bakkeby Date: Sun, 18 Jul 2021 18:12:47 +0200 Subject: [PATCH] Removing gross purging of sixels code ref. #30 --- st.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/st.c b/st.c index e63c8bd..999bab6 100644 --- a/st.c +++ b/st.c @@ -2188,16 +2188,6 @@ csihandle(void) tputtab(csiescseq.arg[0]); break; case 'J': /* ED -- Clear screen */ - - #if SIXEL_PATCH - /* purge sixels */ - /* TODO: kinda gross, should probably make this only purge - * visible sixels */ - for (im = term.images; im; im = im->next) { - im->should_delete = 1; - } - #endif // SIXEL_PATCH - switch (csiescseq.arg[0]) { case 0: /* below */ tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);