Commit 97ba02d4 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

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
No related merge requests found
Showing with 2 additions and 3 deletions
+2 -3
......@@ -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);
......
......@@ -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;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment