From 6cbe73dd80f6918dea84a889e2abca6f06052466 Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 22 Nov 2021 09:32:41 -0500 Subject: [PATCH] kill diagnostic --- src/lib/notcurses.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index 72bba9919..4d00191a1 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -1752,7 +1752,6 @@ int ncplane_putc_yx(ncplane* n, int y, int x, const nccell* c){ int ncplane_putegc_yx(ncplane* n, int y, int x, const char* gclust, size_t* sbytes){ int cols; int bytes = utf8_egc_len(gclust, &cols); -fprintf(stderr, "BYTES: %d COLS: %d [%s]\n", bytes, cols, gclust); if(bytes < 0){ return -1; }