Johannes Schindelin <Johannes.Schindelin@xxxxxx> writes: > @@ -210,7 +210,7 @@ if (@canstatusfiles) { > my $basename = basename($name); > > $basename = "no file " . $basename if (exists($added{$basename})); > - chomp($basename); > + $basename =~ s/^\s+(.*?)\s*$/$1/; Isn't this no-op for a basename that does not begin with a whitespace? Don't you want to still strip trailing whitespaces in such a case? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html