mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05: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:
parent
c5cccfcdaa
commit
5def50c7f6
@ -33,7 +33,11 @@ while (<docs/help/in/*.in>) {
|
|||||||
$SYNTAX =~ s/%\|$//;
|
$SYNTAX =~ s/%\|$//;
|
||||||
$DATARIVI = $SYNTAX;
|
$DATARIVI = $SYNTAX;
|
||||||
} elsif ($DATARIVI =~ /^\S+/) {
|
} elsif ($DATARIVI =~ /^\S+/) {
|
||||||
chomp $DATARIVI if ($data[$count+1] =~ /^\S+/);
|
if ($data[$count+1] =~ /^\S+/) {
|
||||||
|
chomp $DATARIVI;
|
||||||
|
$DATARIVI =~ s/ *$//g;
|
||||||
|
$DATARIVI .= " ";
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$DATARIVI =~ s/^\t/ / while ($DATARIVI =~ /^\t/);
|
$DATARIVI =~ s/^\t/ / while ($DATARIVI =~ /^\t/);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user