1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

when joining lines together, put space between them..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1331 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-03-04 00:13:06 +00:00 committed by cras
parent c5cccfcdaa
commit 5def50c7f6

View File

@ -33,7 +33,11 @@ while (<docs/help/in/*.in>) {
$SYNTAX =~ s/%\|$//;
$DATARIVI = $SYNTAX;
} elsif ($DATARIVI =~ /^\S+/) {
chomp $DATARIVI if ($data[$count+1] =~ /^\S+/);
if ($data[$count+1] =~ /^\S+/) {
chomp $DATARIVI;
$DATARIVI =~ s/ *$//g;
$DATARIVI .= " ";
}
} else {
$DATARIVI =~ s/^\t/ / while ($DATARIVI =~ /^\t/);
}