From: Colin Watson Date: Mon, 26 Aug 2002 14:18:39 +0000 (+0000) Subject: Not needed with the new XSL setup. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?p=bin.git;a=commitdiff_plain;h=55d789d44f313bde0188ffee932ed7b560769f37 Not needed with the new XSL setup. --- diff --git a/check-characters.pl b/check-characters.pl deleted file mode 100755 index eed4859..0000000 --- a/check-characters.pl +++ /dev/null @@ -1,16 +0,0 @@ -#! /usr/bin/perl -w -use diagnostics; -use strict; - -local $/ = undef; -my $file = <>; -while ($file =~ /(.*?)<\/A>/gs) -{ - if ($1 ne $2 || "$2$3" ne lc $4) - { - my $name = $4; - $name =~ y/\n/ /; - print "$name\n"; - } -} -