Remove unused neatquotes script.
authorJelmer Vernooij <jelmer@samba.org>
Tue, 25 Sep 2012 23:28:17 +0000 (01:28 +0200)
committerKarolin Seeger <kseeger@samba.org>
Wed, 10 Oct 2012 06:47:45 +0000 (08:47 +0200)
docs-xml/scripts/neatquotes.pl [deleted file]

diff --git a/docs-xml/scripts/neatquotes.pl b/docs-xml/scripts/neatquotes.pl
deleted file mode 100755 (executable)
index 9d5aa6e..0000000
+++ /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 $_;
-}