diff options
author | Staszek Wawrykiewicz <staw@gust.org.pl> | 2006-12-18 03:35:02 +0000 |
---|---|---|
committer | Staszek Wawrykiewicz <staw@gust.org.pl> | 2006-12-18 03:35:02 +0000 |
commit | ecb7a4e0b6c82b917815412a2589cb3f373f23d4 (patch) | |
tree | ea6f22e273116b6777be7fa3f65474ef61ccb06a /Master/bin/win32/fixtpps.bat | |
parent | fbf4a6e8014789c67a381e0b4f05de5bdadbce24 (diff) |
old win32 deleted
git-svn-id: svn://tug.org/texlive/trunk@2779 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32/fixtpps.bat')
-rwxr-xr-x | Master/bin/win32/fixtpps.bat | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Master/bin/win32/fixtpps.bat b/Master/bin/win32/fixtpps.bat deleted file mode 100755 index 2c1781e8f49..00000000000 --- a/Master/bin/win32/fixtpps.bat +++ /dev/null @@ -1,28 +0,0 @@ -@PERL@
-# fixtpps: fix tpscript document to work with PSUtils
-#
-# Copyright (C) Angus J. C. Duggan 1991-1995
-# See file LICENSE for details.
-
-$nesting = 0;
-$header = 1;
-
-while (<>) {
- if (/^%%Page:/ && $nesting == 0) {
- print $_;
- print "save home\n";
- $header = 0;
- } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/) {
- print $_;
- $nesting++;
- } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
- print $_;
- $nesting--;
- } elsif (/save home/) {
- s/save home//;
- print $_;
- } elsif (!$header || (! /^save$/ && ! /^home$/)) {
- print $_;
- }
-}
-@END@
|