~ubuntu-branches/ubuntu/natty/luatex/natty

« back to all changes in this revision

Viewing changes to source/texk/web2c/luatexdir/pdf/pdfsaverestore.w

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2010-12-13 23:22:59 UTC
  • mfrom: (0.2.1) (1.5.4) (4.3.12 experimental)
  • Revision ID: package-import@ubuntu.com-20101213232259-nqq2mq5z5x6qldw3
Tags: 0.65.0-1
* new upstream release
* ship two source packages as they are distributed by upstream, only
  renamed to match source package requirements. Fix debian/rules
  to install the manual pdf from the right place

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
@ @c
21
21
static const char _svn_version[] =
22
 
    "$Id: pdfsaverestore.w 3571 2010-04-02 13:50:45Z taco $ "
23
 
    "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.60.2/source/texk/web2c/luatexdir/pdf/pdfsaverestore.w $";
 
22
    "$Id: pdfsaverestore.w 3676 2010-05-02 20:04:49Z hhenkel $ "
 
23
    "$URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.65.0/source/texk/web2c/luatexdir/pdf/pdfsaverestore.w $";
24
24
 
25
25
#include "ptexlib.h"
26
26
 
44
44
    }
45
45
    pos_stack[pos_stack_used].pos.h = pos.h;
46
46
    pos_stack[pos_stack_used].pos.v = pos.v;
47
 
    if (page_mode) {
 
47
    if (global_shipping_mode == SHIPPING_PAGE) {
48
48
        pos_stack[pos_stack_used].matrix_stack = matrix_stack_used;
49
49
    }
50
50
    pos_stack_used++;
65
65
        pdftex_warn("Misplaced \\pdfrestore by (%dsp, %dsp)", (int) diff.h,
66
66
                    (int) diff.v);
67
67
    }
68
 
    if (page_mode) {
 
68
    if (global_shipping_mode == SHIPPING_PAGE) {
69
69
        matrix_stack_used = pos_stack[pos_stack_used].matrix_stack;
70
70
    }
71
71
}