1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

Remove unused neatquotes script.

This commit is contained in:
Jelmer Vernooij 2012-09-26 01:28:17 +02:00
parent be564022cb
commit 30c0c751c2

View File

@ -1,12 +0,0 @@
#!/usr/bin/perl
my $inprog = 0;
while(<STDIN>) {
if(/<(programlisting|screen)>/) { $inprog = 1; }
if(/<\/(programlisting|screen)>/) { $inprog = 0; }
if(not /="(.*)"/ and not $inprog) {
s/"(.*?)"/<quote>\1<\/quote>/g;
}
print $_;
}