]> git.wh0rd.org Git - nano.git/commitdiff
Fixes for nano-regress and regress fix on nano.c for compilation with slang
authorChris Allegretta <chrisa@asty.org>
Tue, 17 Feb 2009 03:05:17 +0000 (03:05 +0000)
committerChris Allegretta <chrisa@asty.org>
Tue, 17 Feb 2009 03:05:17 +0000 (03:05 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4381 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

nano-regress
src/nano.c

index 92f1086fcf1629961275dea4302cc2afdc66eb29..926ae2fe0587a84f0f9f36b95e0dd35e6afe061e 100755 (executable)
@@ -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);
index c61b11ccc058bde7f659e30695fc4137b44c89e6..e59526e20fba7c259d77514d3a47dda4a3f688e0 100644 (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;
            }