kill diagnostic

This commit is contained in:
nick black 2021-11-22 09:32:41 -05:00
parent f061e1550a
commit 6cbe73dd80
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -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 ncplane_putegc_yx(ncplane* n, int y, int x, const char* gclust, size_t* sbytes){
int cols; int cols;
int bytes = utf8_egc_len(gclust, &cols); int bytes = utf8_egc_len(gclust, &cols);
fprintf(stderr, "BYTES: %d COLS: %d [%s]\n", bytes, cols, gclust);
if(bytes < 0){ if(bytes < 0){
return -1; return -1;
} }