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.

llvm-svn: 26825
This commit is contained in:
Reid Spencer 2006-03-17 17:43:01 +00:00
parent 388fc4d9fb
commit d1453ef454
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ sub AddRecord {
sub AddPreTag { # Add pre tags around nonempty list, or convert to "none" sub AddPreTag { # Add pre tags around nonempty list, or convert to "none"
$_ = shift; $_ = 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 sub ChangeDir { # directory, logical name