~ubuntu-branches/ubuntu/oneiric/luatex/oneiric

« back to all changes in this revision

Viewing changes to source/texk/web2c/luatexdir/lua/luatex.c

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2009-10-22 02:16:43 UTC
  • mfrom: (1.1.8 upstream) (4.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091022021643-hvoq5boj9y5q92ao
Tags: 0.40.6-1
* new upstream release (add Announce file)
* fix FTBFS due to new poppler version (Closes: #529331)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <zlib.h>
23
23
 
24
24
static const char _svn_version[] =
25
 
    "$Id: luatex.c 2448 2009-06-08 07:43:50Z taco $ $URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.5/source/texk/web2c/luatexdir/lua/luatex.c $";
 
25
    "$Id: luatex.c 2599 2009-06-25 10:35:26Z taco $ $URL: http://foundry.supelec.fr/svn/luatex/tags/beta-0.40.6/source/texk/web2c/luatexdir/lua/luatex.c $";
26
26
 
27
27
/* do this aleph stuff here, for now */
28
28
 
53
53
static int ocp_entries = 0;
54
54
 
55
55
void
56
 
allocate_ocp_table P2C(int, ocp_number, int, ocp_size)
 
56
allocate_ocp_table (int ocp_number, int ocp_size)
57
57
{
58
58
    int i;
59
59
    if (ocp_entries == 0) {
71
71
}
72
72
 
73
73
void
74
 
dump_ocp_table P1C(int, ocp_number)
 
74
dump_ocp_table (int ocp_number)
75
75
{
76
76
    dump_things(ocp_tables[ocp_number][0], ocp_tables[ocp_number][0] + 1);
77
77
}
78
78
 
79
79
void
80
 
undump_ocp_table P1C(int, ocp_number)
 
80
undump_ocp_table (int ocp_number)
81
81
{
82
82
    int sizeword;
83
83
    if (ocp_entries == 0) {
95
95
 
96
96
 
97
97
void
98
 
run_external_ocp P1C(string, external_ocp_name)
 
98
run_external_ocp (string external_ocp_name)
99
99
{
100
100
    char *in_file_name;
101
101
    char *out_file_name;