Description: Remove multiple space runs
Author: Baruch Even <baruch@debian.org>
Bug-Debian: http://bugs.debian.org/217941
--- a/colormake.pl
+++ b/colormake.pl
@@ -57,6 +57,9 @@
 {
 	$orgline = $thisline = $_;
 	
+	# Remove multiple spaces
+	$thisline =~ s/  \+/ /g;
+
 	# Truncate lines.
 	# I suppose this is bad, but it's better than what less does!
 	if ($cols >= 0) 
