[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Reid Spencer reid at x10sys.com
Fri Mar 17 09:43:13 PST 2006



Changes in directory llvm/utils:

NightlyTest.pl updated: 1.104 -> 1.105
---
Log message:

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.


---
Diffs of the changes:  (+1 -1)

 NightlyTest.pl |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.104 llvm/utils/NightlyTest.pl:1.105
--- llvm/utils/NightlyTest.pl:1.104	Wed Feb  8 03:08:06 2006
+++ llvm/utils/NightlyTest.pl	Fri Mar 17 11:43:01 2006
@@ -151,7 +151,7 @@
 
 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






More information about the llvm-commits mailing list