File: fixpsditps.pl

package info (click to toggle)
texlive-bin 2005.dfsg.2-13
  • links: PTS
  • area: main
  • in suites: etch
  • size: 171,964 kB
  • ctags: 92,183
  • sloc: ansic: 714,864; cpp: 77,114; sh: 59,807; perl: 36,354; makefile: 8,380; asm: 4,244; yacc: 3,104; pascal: 2,483; python: 2,383; ada: 1,681; lex: 1,678; awk: 1,214; cs: 879; lisp: 708; xml: 473; sed: 466; java: 172; csh: 47
file content (25 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@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@