- i need this disabled code for testing a patch. Please leave it in.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 7 Jun 2007 12:11:24 +0000 (12:11 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 7 Jun 2007 12:11:24 +0000 (12:11 -0000)
coreutils/diff.c

index b39a301b9f88de7663ac1b0b2ea590c546dfab75..830c15ea6eb4dee16c5f16098966c937277d9389 100644 (file)
@@ -748,6 +748,23 @@ static void dump_unified_vec(FILE * f1, FILE * f2)
                        ch = 'c';
                else
                        ch = (a <= b) ? 'd' : 'a';
+#if 0
+               switch (ch) {
+               case 'c':
+                       fetch(ixold, lowa, a - 1, f1, ' ');
+                       fetch(ixold, a, b, f1, '-');
+                       fetch(ixnew, c, d, f2, '+');
+                       break;
+               case 'd':
+                       fetch(ixold, lowa, a - 1, f1, ' ');
+                       fetch(ixold, a, b, f1, '-');
+                       break;
+               case 'a':
+                       fetch(ixnew, lowc, c - 1, f2, ' ');
+                       fetch(ixnew, c, d, f2, '+');
+                       break;
+               }
+#else
                if (ch == 'c' || ch == 'd') {
                        fetch(ixold, lowa, a - 1, f1, ' ');
                        fetch(ixold, a, b, f1, '-');
@@ -756,6 +773,7 @@ static void dump_unified_vec(FILE * f1, FILE * f2)
                        fetch(ixnew, lowc, c - 1, f2, ' ');
                if (ch == 'c' || ch == 'a')
                        fetch(ixnew, c, d, f2, '+');
+#endif
                lowa = b + 1;
                lowc = d + 1;
        }