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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
% triptrap/texmf.cnf -- configuration for the trip and trap tests.
% These values apply to all the programs, and they are necessary for any
% kind of reasonable diff.
error_line = 64
half_error_line = 32
max_print_line = 72
% TeX, Metafont, and MetaPost.
mem_bot.tex = 1
main_memory.tex = 3000
main_memory.mf = 3001
main_memory.mpost = 4501
% In case you happen to run an ini* link by hand.
mem_bot.initex = 1
main_memory.initex = 3000
main_memory.inimf = 3001
main_memory.inimpost = 4501
% Actually, Metafont currently ignores the settings for max_strings,
% string_vacancies and pool_size specified here, but it doesn't hurt
% to supply the correct values, just in case this changes one day.
max_strings.tex = 3000
max_strings.mf = 2000
max_strings.mpost = 2500
% In case you happen to run an ini* link by hand.
max_strings.initex = 3000
max_strings.inimf = 2000
max_strings.inimpost = 2500
string_vacancies = 8000
pool_size = 40000
% TeX only.
font_mem_size = 20000
font_max = 75
stack_size = 200
nest_size = 40
buf_size = 500
save_size = 600
dvi_buf_size = 800
% Although hyph_size is settable, it can't be <hyph_prime, which is 607,
% and the original trip setting is 307, so no point in changing the default.
% Metafont only.
gf_buf_size.inimf = 8 % trapman.tex says to use this.
MFTERM.inimf = trap % get the right screen output
screen_width.inimf = 100
screen_depth.inimf = 200
% MetaPost only. Turn off callmakempx, i.e., makempx,
% since we can only test tex and dvitomp, and we'll test those in other
% places anyway. (mpto fails because of the unending string constant
% check in trap.mp.)
MPXCOMMAND = 0
% Avoid running any MakeTeX* program.
MAKETEXTFM = 0
MAKETEXTEX = 0
MAKETEXMF = 0
% Avoid reading any texfonts.map:
TEXFONTMAPS = triptrap
% Search paths.
% trip.tex:
TEXINPUTS = .
% trap.mf:
MFINPUTS = .
% trap.mp, mtrap.mp:
MPINPUTS = .
% trip.tfm, trap.tfm, trapf.tfm:
TFMFONTS = .
% trip.fmt:
TEXFORMATS = .
% trap.base:
MFBASES = .
% trap.mem:
MPMEMS = .
% tex.pool:
TEXPOOL = .
% mf.pool:
MFPOOL = .
% mp.pool:
MPPOOL = .
% GFtype only.
line_length.gftype = 79
max_rows.gftype = 79
max_cols.gftype = 79
|