diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-12 00:28:35 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-08-12 00:31:01 +0200 |
commit | b11768a2ab2ad63a232be9f018f56700c9fbd172 (patch) | |
tree | 253d3aab5ac39a61b67d6e0a6b6a30a71847c20d /src/piece-table.c | |
parent | 9dc4e4f217c6032e99b5828a514cf817770981a9 (diff) |
piece-table: remove print functionality
We want to lean more on the debugger world than printf debugging as our
data structures are opaque (on purpose).
Diffstat (limited to 'src/piece-table.c')
-rw-r--r-- | src/piece-table.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/piece-table.c b/src/piece-table.c index c7f9381..59fb76f 100644 --- a/src/piece-table.c +++ b/src/piece-table.c @@ -392,13 +392,6 @@ piece_table_create (char *orig) } void -piece_table_print (piece_table *pt) -{ - printf("orig: %s\n" - " add: %s\n", pt->orig.contents, pt->add.contents); -} - -void piece_table_destroy (piece_table *pt) { text_buffer_free (&pt->orig); |