git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@644
35c25a1d-7b9e-4130-9fde-
d3aeb78583b8
- 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
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;