From e9b5388dde854437be3a3ac820b5899e6b1b50fe Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 14 Apr 2021 05:21:23 -0400 Subject: [PATCH] [sixel] clear debugging cruft #1533 --- src/lib/sixel.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/sixel.c b/src/lib/sixel.c index 42bed3f07..cc32922ca 100644 --- a/src/lib/sixel.c +++ b/src/lib/sixel.c @@ -535,7 +535,6 @@ int sixel_draw(const notcurses* n, const ncpile* p, sprixel* s, FILE* out){ } int sprite_sixel_init(int fd){ -fprintf(stderr, "ARP?\n"); // \e[?8452: DECSDM private "sixel scrolling" mode keeps the sixel from // scrolling, but puts it at the current cursor location (as opposed to // the upper left corner of the screen). @@ -556,6 +555,5 @@ int sixel_wipe(const notcurses* nc, sprixel* s, int ycell, int xcell){ } int sixel_shutdown(int fd){ -fprintf(stderr, "ERP?\n"); return tty_emit("\e[?80;8452l", fd); }