From ef4e93abb97fc76d3478c346b44c82ba8db1a4b9 Mon Sep 17 00:00:00 2001 From: night0721 Date: Tue, 12 Nov 2024 12:27:34 +0000 Subject: [PATCH] Delete debug lines --- vip.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/vip.c b/vip.c index 5f9e95b..e3bc020 100644 --- a/vip.c +++ b/vip.c @@ -585,9 +585,6 @@ void draw_rows(void) char *c = &cur_editor->row[filerow].render[cur_editor->coloff]; unsigned char *hl = &cur_editor->row[filerow].hl[cur_editor->coloff]; - FILE *f=fopen("/home/night/a", "a"); - fprintf(f, "%s, cur_editor->coloff: %d\n", c, cur_editor->coloff); - fclose(f); for (int j = 0; j < len; j++) { if (iscntrl(c[j])) { bprintf("%s%c\033[m", OVERLAY_2_BG, '@' + c[j]);