Fixes for nano-regress and regress fix on nano.c for compilation with slang

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4381 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2009-02-17 03:05:17 +00:00
parent 86988b5026
commit 97ba02d4f1
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,8 @@ foreach my $name (@combos) {
my @args = @$name;
my $pct = $i / $#combos * 100;
printf "Trying with options: @args, %d%% done...\n", $pct;
if (system "(./configure @args && make clean all) >/dev/null 2>&1") {
system("(./configure @args && make clean all) >/dev/null 2>&1");
if ($? != 0) {
print "Build failed for args: @args\n";
print "Try running make to reproduce\n";
exit(1);

View File

@ -1615,9 +1615,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
#endif
}
}
#ifndef NANO_TINY
}
#endif
*finished = TRUE;
break;
}