diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-09-26 01:28:17 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-09-26 07:58:31 +0200 |
commit | 30c0c751c2a61b530099ac35663ec8cd8cb66527 (patch) | |
tree | 23e00aee29d55f5e12486853e0a53ed55892df24 /docs-xml/scripts | |
parent | be564022cbb394667ec3fed1f811b4628b8423bd (diff) | |
download | samba-30c0c751c2a61b530099ac35663ec8cd8cb66527.tar.gz samba-30c0c751c2a61b530099ac35663ec8cd8cb66527.tar.bz2 samba-30c0c751c2a61b530099ac35663ec8cd8cb66527.zip |
Remove unused neatquotes script.
Diffstat (limited to 'docs-xml/scripts')
-rwxr-xr-x | docs-xml/scripts/neatquotes.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/docs-xml/scripts/neatquotes.pl b/docs-xml/scripts/neatquotes.pl deleted file mode 100755 index 9d5aa6e9e3..0000000000 --- a/docs-xml/scripts/neatquotes.pl +++ /dev/null @@ -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 $_; -} |