make sure that the actual line is printed in grepdbg & watchdbg esp. with
[spider.git] / perl / grepdbg
index a14bf3011d36489004359304b320af3b4baf73f4..467c785330fe4db733d2689f37210bfc1a0674a6 100755 (executable)
@@ -63,9 +63,8 @@ for my $entry (@list) {
                        if ($line =~ m{$string}io) {
                                for (@prev) {
                                        s/([\x00-\x1f\x7f-\xff])/sprintf("\\x%02X", ord($1))/eg; 
-                                       my @line =  split '\^';
-                                       my $t = shift @line;
-                                       print atime($t), ' ', join('^', @line), "\n"; 
+                                       my ($t, $l) =  split /\^/, $line, 2;
+                                       print atime($t), ' ', $l, "\n"; 
                                }
                                @prev = ();
                        }