summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorailin-nemui2015-11-25 22:16:30 +0100
committerailin-nemui2015-11-25 22:16:30 +0100
commitfaed3b20dd658937714be15afd70507c7d053136 (patch)
tree497a0a3fc4ddd5597f47591ed127630766d4f517 /scripts
parent4daf890689b9d65856bc47cf9d155b4d8f447d45 (diff)
parent3ef538d781fb20f294efc28e17ca94d258ee6d6f (diff)
downloadscripts.irssi.org-faed3b20dd658937714be15afd70507c7d053136.tar.bz2
Merge pull request #184 from vague666/rainbow_update
Removed double-comma output from rainbow.pl
Diffstat (limited to 'scripts')
-rw-r--r--scripts/rainbow.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rainbow.pl b/scripts/rainbow.pl
index 80e5d40..df6501d 100644
--- a/scripts/rainbow.pl
+++ b/scripts/rainbow.pl
@@ -66,7 +66,7 @@ sub make_colors {
$last = $color;
$newstr .= "\003";
$newstr .= sprintf("%02d", $colors[$color]);
- $newstr .= (($char eq ",") ? ",," : $char);
+ $newstr .= $char;
}
return $newstr;