chiark / gitweb /
i18n: i18n-diff-auditor: further not exactly debugging improvement
[dgit.git] / i18n-diff-auditor
index 61d7330f21d03c135355ef157b885e6b08303a71..da629d9f21172a541b13f62602e31569999d6cfe 100755 (executable)
@@ -177,6 +177,7 @@ sub semiparse ($) {
        $i--; # counteracts $i++
     }
     debug $ichunkstart, "semiparsed: ".join ' ', map { $_->{P} } @o;
+    # debug $ichunkstart, "semiparsed V: ".join ' ', map { defined $_->{V} ? ">$_->{V}<" : '-' } @o;
     return @o;
 }          
 
@@ -264,8 +265,16 @@ sub analyse_chunk_core () {
                my ($lit, $what) = @_;
                my $xl = substr($xs, 0, length($lit));
                if ($xl ne $lit) {
-                   debug $ichunkstart, "not exactly x: \"..$xs\"";
-                   debug $ichunkstart, "not exactly y:   $lit";
+                   my $q = sub {
+                       my ($p) = @_;
+                       $p =~ s{\\}{\\\\}g;
+                       $p =~ s{\'}{\\'}g;
+                       $p =~ s{\n}{\\n}g;
+                       $p =~ s{\t}{\\t}g;
+                       return "'$p'";
+                   };
+                   debug $ichunkstart, "not exactly x: ..".$q->($xs);
+                   debug $ichunkstart, "not exactly y:   ".$q->($lit);
                    my $next = @ys ? $ys[0]{P} : '(end)';
                    die "string contents mismatch near $what before $next\n";
                }