1
1

tweaks: remove a redundant, enclosed #ifdef

Этот коммит содержится в:
Benno Schulenberg 2019-04-22 19:18:29 +02:00
родитель 493f215513
Коммит 7668bfe6f2

Просмотреть файл

@ -493,13 +493,12 @@ void copy_from_buffer(linestruct *somebuffer)
/* Unlink a node from the rest of the circular list, and delete it. */
void unlink_opennode(openfilestruct *fileptr)
{
#ifdef ENABLE_MULTIBUFFER
if (fileptr == firstfile)
firstfile = firstfile->next;
fileptr->prev->next = fileptr->next;
fileptr->next->prev = fileptr->prev;
#endif
delete_opennode(fileptr);
}
@ -516,7 +515,7 @@ void delete_opennode(openfilestruct *fileptr)
#endif
free(fileptr);
}
#endif
#endif /* ENABLE_MULTIBUFFER */
/* Display a warning about a key disabled in view mode. */
void print_view_warning(void)