From b1f4d166928fb49e67f7f1e93a3fbc46d7570add Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 27 Feb 2020 21:23:27 +0530 Subject: [PATCH] Left in a printf() --- kitty/screen.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kitty/screen.c b/kitty/screen.c index 363d1afef..94688f1ef 100644 --- a/kitty/screen.c +++ b/kitty/screen.c @@ -1694,7 +1694,6 @@ iteration_data_is_empty(const Screen *self, const IterationData *idata) { static inline void apply_selection(Screen *self, uint8_t *data, const Selection *s, IterationData *last_rendered, uint8_t set_mask) { iteration_data(self, s, last_rendered, 0, true); - printf("111111111 y: %u y_limit: %u lines: %u\n", last_rendered->y, last_rendered->y_limit, self->lines); for (int y = last_rendered->y; y < last_rendered->y_limit; y++) { if (y > (int)self->lines - 1) break;