1
1

tweaks: avoid an unused variable warning with --enable-tiny

This fixes https://savannah.gnu.org/bugs/?53998.
Этот коммит содержится в:
David Lawrence Ramsey 2018-05-28 09:35:27 -05:00 коммит произвёл Benno Schulenberg
родитель 59eb01b403
Коммит dc4146f077

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

@ -1026,9 +1026,9 @@ void do_redo(void)
void do_enter(void)
{
filestruct *newnode = make_new_node(openfile->current);
filestruct *sampleline = openfile->current;
size_t extra = 0;
#ifndef NANO_TINY
filestruct *sampleline = openfile->current;
bool allblanks = FALSE;
if (ISSET(AUTOINDENT)) {