Patch by Honggyu Kim
Summary:
This patch removes useless whitespace in File path in index.html
Previously, a File directory path is copied and pasted as below:
arch /arm /kernel /stacktrace.c
It just removes the whitespace between directories and makes the
copied string as below:
arch/arm/kernel/stacktrace.c
The output looks same in html format, but the copied directory path
can be pasted as it looks.
Reviewers: krememek, zaks.anna, sylvestre.ledru
Reviewed By: sylvestre.ledru
Subscribers: aemerson, cfe-commits
Differential Revision: http://reviews.llvm.org/D10354
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239609
91177308-0d34-0410-b5e6-
96231b3b80d8
my $x = shift @fname;
print OUT $x;
if ($#fname >= 0) {
- print OUT "<span class=\"W\"> </span>/";
+ print OUT "/";
}
}
}