diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-03-17 17:43:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-03-17 17:43:01 +0000 |
commit | a165d57dad71b1ef94299615c7889ebfd9831f80 (patch) | |
tree | b1838aa37b31e1afeaac52ad122a649526094801 | |
parent | 89fad2c3b27f62c53a807839c752626f2b11142f (diff) |
Use the <tt> tag instead of <pre> tag to get code/file/warning lists to
wrap but also still be in a fixed-width font.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26825 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index c8fb302865..db61914cdd 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -151,7 +151,7 @@ sub AddRecord { sub AddPreTag { # Add pre tags around nonempty list, or convert to "none" $_ = shift; - if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; } + if (length) { return "<ul><tt>$_</tt></ul>"; } else { "<b>none</b><br>"; } } sub ChangeDir { # directory, logical name |