diff options
author | Karl Berry <karl@freefriends.org> | 2012-04-10 00:24:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-04-10 00:24:31 +0000 |
commit | bb7c089a2c38665a114f32d3146e1ca62e03f30b (patch) | |
tree | c256190b157319cbdc152170212fa802c4c7a82a /Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in | |
parent | 56c04f62eb3dd8c2c02959b67dd2d371d549521e (diff) |
chktex 1.6.6
git-svn-id: svn://tug.org/texlive/trunk@25902 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in')
-rw-r--r-- | Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in b/Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in deleted file mode 100644 index 669afc481c9..00000000000 --- a/Build/source/utils/chktex/chktex-1.6.4/MakeHTML.in +++ /dev/null @@ -1,20 +0,0 @@ -#! @PERL5@ - -$latexonly = 0; - -while(<>) -{ - $latexonly = 1 if /^%latex/i; - $latexonly = 0 if /^%endlatex/i; - - - if($latexonly) { - if(/^%!(.*)/) - { - print $1; - } - } - else { - print; - } -} |