Commit 4cb991dd authored by Chris Allegretta's avatar Chris Allegretta
Browse files

add_to_cutbuffer() - Remove useless statements (Rocco).

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@644 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -26,6 +26,9 @@ Cvs code -
line, and color later on.
- Added --enable-color option to allow color and syntax highlighting
(stub as of now).
- cut.c:
add_to_cutbuffer()
- Remove useless statements (Rocco).
- faq.html:
- Brought the FAQ up to date, many little changes (Jordi).
- files.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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment