From: Chris Allegretta Date: Thu, 10 May 2001 22:55:16 +0000 (+0000) Subject: add_to_cutbuffer() - Remove useless statements (Rocco). X-Git-Tag: v1.0.2~4 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e51732bc2c9905718f04780df5f99108a977d2e1;p=nano.git add_to_cutbuffer() - Remove useless statements (Rocco). git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@644 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 6bebb2d6..254367f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ Cvs code - - Added config.guess and config.sub to distribution because apparently newer autoconf/automakes can't live without them. - Various spelling updates by David Lawrence Ramsey. +- cut.c: + add_to_cutbuffer() + - Remove useless statements (Rocco). - move.c: page_up() - Rewritten with a loop to make screen updates work when diff --git a/cut.c b/cut.c index a1d01e18..f5a3232a 100644 --- a/cut.c +++ b/cut.c @@ -39,15 +39,12 @@ static filestruct *cutbottom = NULL; /* Pointer to end of cutbuffer */ void add_to_cutbuffer(filestruct * inptr) { - filestruct *tmp; - #ifdef DEBUG fprintf(stderr, _("add_to_cutbuffer called with inptr->data = %s\n"), inptr->data); #endif totsize -= strlen(inptr->data); - tmp = cutbuffer; if (cutbuffer == NULL) { cutbuffer = inptr; inptr->prev = NULL;