summaryrefslogtreecommitdiff
path: root/Master/bin/x86_64-linux/fixpsditps
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-10 12:56:22 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-10 12:56:22 +0000
commit8fe63ef3d9d533a512619bbea97a7d868437e2c2 (patch)
tree4857a3ad71032609ec2f5ca3e2e9b450867086a6 /Master/bin/x86_64-linux/fixpsditps
parentae3abcea86067a9cdb6a426102b6eed17a2526c9 (diff)
linked scripts
git-svn-id: svn://tug.org/texlive/trunk@21008 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/x86_64-linux/fixpsditps')
-rwxr-xr-xMaster/bin/x86_64-linux/fixpsditps25
1 files changed, 0 insertions, 25 deletions
diff --git a/Master/bin/x86_64-linux/fixpsditps b/Master/bin/x86_64-linux/fixpsditps
deleted file mode 100755
index 2a1728a8204..00000000000
--- a/Master/bin/x86_64-linux/fixpsditps
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env 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 $_;
- }
-}
-