From 40ee1e8d7b0d7db50ba8e78fcce0b914aea826f9 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Wed, 26 Nov 2025 13:46:48 -0800 Subject: [PATCH] kill unused declaration. --- main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.c b/main.c index 2ae9902..9b066b1 100644 --- a/main.c +++ b/main.c @@ -193,8 +193,6 @@ void goto_line(void); int cursor_at_eol(void); void delete_row(int at); void row_insert_ch(struct erow *row, int at, int16_t c); -void row_insert_block(struct erow *row, int at, - const char *data, size_t len); void row_delete_ch(struct erow *row, int at); void insertch(int16_t c); void deletech(uint8_t op);