From df41114e0e53f3afd969a6f775c638907e4f474b Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 21 Dec 2017 19:45:18 +0100 Subject: [PATCH] tweaks: drop some old debugging code plus a superfluous comment --- src/cut.c | 6 ------ src/proto.h | 1 - src/utils.c | 11 ----------- 3 files changed, 18 deletions(-) diff --git a/src/cut.c b/src/cut.c index e67cacb9..bf55787f 100644 --- a/src/cut.c +++ b/src/cut.c @@ -284,16 +284,10 @@ void do_uncut_text(void) /* Set the desired x position to where the pasted text ends. */ openfile->placewewant = xplustabs(); - /* Mark the file as modified. */ set_modified(); - refresh_needed = TRUE; #ifdef ENABLE_COLOR check_the_multis(openfile->current); #endif - -#ifdef DEBUG - dump_filestruct_reverse(); -#endif } diff --git a/src/proto.h b/src/proto.h index 2232e269..0e2e5641 100644 --- a/src/proto.h +++ b/src/proto.h @@ -616,7 +616,6 @@ filestruct *fsfromline(ssize_t lineno); #endif #ifdef DEBUG void dump_filestruct(const filestruct *inptr); -void dump_filestruct_reverse(void); #endif /* Most functions in winio.c. */ diff --git a/src/utils.c b/src/utils.c index 8d5be6db..d16c5e8a 100644 --- a/src/utils.c +++ b/src/utils.c @@ -587,15 +587,4 @@ void dump_filestruct(const filestruct *inptr) inptr = inptr->next; } } - -/* Dump the current buffer to stderr in reverse. */ -void dump_filestruct_reverse(void) -{ - const filestruct *fileptr = openfile->filebot; - - while (fileptr != NULL) { - fprintf(stderr, "(%zd) %s\n", fileptr->lineno, fileptr->data); - fileptr = fileptr->prev; - } -} #endif /* DEBUG */