mirror of
https://github.com/irssi/irssi.git
synced 2026-08-12 21:27:39 +02:00
14 lines
150 B
Perl
14 lines
150 B
Perl
|
|
#!/usr/bin/perl -w
|
||
|
|
|
||
|
|
while(<>) {
|
||
|
|
if(m!/\*.SYNTAX\:! || $tt) {
|
||
|
|
s!^\s+! !;
|
||
|
|
if (m#\*/#) {
|
||
|
|
$tt=0;
|
||
|
|
} else {
|
||
|
|
$tt=1;
|
||
|
|
chomp;
|
||
|
|
}
|
||
|
|
print;
|
||
|
|
}
|
||
|
|
}
|