v/exp
1
0
mirror of https://github.com/troydm/exp.git synced 2025-05-16 14:40:09 -07:00

extra line removed

This commit is contained in:
troydm 2014-02-09 02:42:57 +04:00
parent f806c06cb8
commit 7388982699

4
exp
View File

@ -88,10 +88,10 @@ for my $i (@helprefs){
my $title = decodechars(striptags $t[1]) if @t; my $title = decodechars(striptags $t[1]) if @t;
my $desc = formatdesc($title, decodechars(striptags $d[1])) if @d; my $desc = formatdesc($title, decodechars(striptags $d[1])) if @d;
if($color){ if($color){
print "\n", $title, color($color), " ---[", color("reset") print $title, color($color), " ---[", color("reset")
, " $desc ", color($color), "]", color("reset"), "\n\n"; , " $desc ", color($color), "]", color("reset"), "\n\n";
}else{ }else{
print "\n$title ---[ $desc ]\n\n"; print "$title ---[ $desc ]\n\n";
} }
} }
} }