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

This fixes https://savannah.gnu.org/bugs/?53998.
master
David Lawrence Ramsey 2018-05-28 09:35:27 -05:00 committed by Benno Schulenberg
parent 59eb01b403
commit dc4146f077
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {