-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomm-texlive.hch
More file actions
56 lines (48 loc) · 1.99 KB
/
Copy pathcomm-texlive.hch
File metadata and controls
56 lines (48 loc) · 1.99 KB
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
% Original Kpathsea changes for CWEB by Wlodek Bzyl and Olaf Weber
% This file is in the Public Domain.
% Most of the original changes were merged with the set of change files
% of the CWEBbin project. This stripped change file is last in line of
% comm-extensions.hch, comm-output.hch, comm-i18n.hch, and comm-texlive.hch
% that get tie'd into comm-w2c.h that is used in CWEB for TeX Live.
Section 7.
@x l.120
@d max_file_name_length 60
@y
@d max_file_name_length 1024
@z
@x l.134
extern int line[]; /* number of current line in the stacked files */
@y
extern char *found_filename; /* filename found by |kpse_find_file| */
extern int line[]; /* number of current line in the stacked files */
@z
Section 13.
@x l.216
extern void print_stats(void); /* defined in \.{ctangle.w} and \.{cweave.w} */
@y
extern void cb_show_banner(void); /* copy |banner| back to \.{common.w} */
@#
extern void print_stats(void); /* defined in \.{ctangle.w} and \.{cweave.w} */
@z
Section 16.
@x l.249
@d buf_size 200 /* maximum length of input line, plus one */
@d longest_name 10000 /* file names, section names, and section texts
shouldn't be longer than this */
@d long_buf_size (buf_size+longest_name) /* for \.{CWEAVE} */
@d max_bytes 100000 /* the number of bytes in identifiers,
index entries, and section names; must be less than $2^{24}$ */
@d max_names 5000 /* number of identifiers, strings, section names;
must be less than 10240 */
@d max_sections 2000 /* greater than the total number of sections */
@y
@d buf_size 1000 /* maximum length of input line, plus one */
@d longest_name 10000 /* file names, section names, and section texts
shouldn't be longer than this */
@d long_buf_size (buf_size+longest_name) /* for \.{CWEAVE} */
@d max_bytes 1000000 /* the number of bytes in identifiers,
index entries, and section names; must be less than $2^{24}$ */
@d max_names 10239 /* number of identifiers, strings, section names;
must be less than 10240 */
@d max_sections 4000 /* greater than the total number of sections */
@z