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:
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;