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/fixscribeps.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/fixscribeps.bat')
-rwxr-xr-x | Master/bin/win32/fixscribeps.bat | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Master/bin/win32/fixscribeps.bat b/Master/bin/win32/fixscribeps.bat deleted file mode 100755 index f7bf4116505..00000000000 --- a/Master/bin/win32/fixscribeps.bat +++ /dev/null @@ -1,19 +0,0 @@ -@PERL@
-# fixscribeps: get conforming PostScript out of Scribe
-#
-# Copyright (C) Angus J. C. Duggan 1991-1995
-# See file LICENSE for details.
-
-$inepsf = 0;
-$epsfn = 0;
-while (<>) {
- if (/^([0-9]+ [0-9]+ [0-9]+ PB) (%!.*)/) {
- print "$1\n%%BeginDocument: Scribe-EPSF $epsfn 0\n$2\n";
- $inepsf++;
- } elsif (/^ PE/ && $inepsf) {
- print "%%EndDocument\n", $_;
- } else {
- print $_;
- }
-}
-@END@
|