summaryrefslogtreecommitdiff
path: root/Master/bin/win32/fixpsditps.bat
diff options
context:
space:
mode:
authorStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:35:02 +0000
committerStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:35:02 +0000
commitecb7a4e0b6c82b917815412a2589cb3f373f23d4 (patch)
treeea6f22e273116b6777be7fa3f65474ef61ccb06a /Master/bin/win32/fixpsditps.bat
parentfbf4a6e8014789c67a381e0b4f05de5bdadbce24 (diff)
old win32 deleted
git-svn-id: svn://tug.org/texlive/trunk@2779 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32/fixpsditps.bat')
-rwxr-xr-xMaster/bin/win32/fixpsditps.bat25
1 files changed, 0 insertions, 25 deletions
diff --git a/Master/bin/win32/fixpsditps.bat b/Master/bin/win32/fixpsditps.bat
deleted file mode 100755
index eead0174efd..00000000000
--- a/Master/bin/win32/fixpsditps.bat
+++ /dev/null
@@ -1,25 +0,0 @@
-@PERL@
-# fixpsditps: fix psdit output for use in psutils
-#
-# Copyright (C) Angus J. C. Duggan 1991-1995
-# See file LICENSE for details.
-
-$nesting = 0;
-
-while (<>) {
- if (/^\/p{pop showpage pagesave restore \/pagesave save def}def$/) {
- print "/p{pop showpage pagesave restore}def\n";
- } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/ ) {
- print $_;
- $nesting++;
- } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
- print $_;
- $nesting--;
- } elsif (/^%%Page:/ && $nesting == 0) {
- print $_;
- print "xi\n";
- } elsif (! /^xi$/) {
- print $_;
- }
-}
-@END@