diff options
Diffstat (limited to 'packaging/SGI/psfixes.pl')
-rwxr-xr-x | packaging/SGI/psfixes.pl | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/packaging/SGI/psfixes.pl b/packaging/SGI/psfixes.pl deleted file mode 100755 index 13e9bdb0a8..0000000000 --- a/packaging/SGI/psfixes.pl +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/perl - -while (<>) { -# strip any ctrl-d's - $_ =~ s/^//; -# get rid of any non-postscript commands - if (/^%/) { - do { - $_ = <>; - } until ( /^%/ ) || eof() ; - if (! eof()) { - print; - } - } -# fix bug in long titles from MS Word - elsif (/^%%Title:/) { - s/.
$/
/; - print; - } -# remove VM test - elsif (/^\/VM\?/) { - print "/VM? { pop } bind def
\n"; - do { - $_ = <>; - } until (/def
/) || eof() ; - } - else { - print; - } -} |