summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/cwebdir/ctang-w2c.ch
blob: 9e9bbe3b92795c89fa47ff9f6921d4a738913269 (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
% Kpathsea changes for CWEB by Wlodek Bzyl and Olaf Weber
% Copyright 2002 Wlodek Bzyl and Olaf Weber
% This file is in the Public Domain.

@x l.27
\def\title{CTANGLE (Version 3.64)}
\def\topofcontents{\null\vfill
  \centerline{\titlefont The {\ttitlefont CTANGLE} processor}
  \vskip 15pt
  \centerline{(Version 3.64)}
  \vfill}
@y
\def\title{CTANGLE (Version 3.64k)}
\def\topofcontents{\null\vfill
  \centerline{\titlefont The {\ttitlefont CTANGLE} processor}
  \vskip 15pt
  \centerline{(Version 3.64k)}
  \vfill}
@z

This change can not be applied when `tie' is  used
(TOC file can not be typeset).

%@x l.48
%\let\maybe=\iftrue
%@y
%\let\maybe=\iffalse % print only sections that change
%@z


Section 1.

@x l.49
The ``banner line'' defined here should be changed whenever \.{CTANGLE}
is modified.

@d banner "This is CTANGLE (Version 3.64)\n"
@y
The ``banner line'' defined here should be changed whenever \.{CTANGLE}
is modified.

@d banner "This is CTANGLE, Version 3.64"
@z


Section 2.

@x l.72
@ We predeclare several standard system functions here instead of including
their system header files, because the names of the header files are not as
standard as the names of the functions. (For example, some \CEE/ environments
have \.{<string.h>} where others have \.{<strings.h>}.)

@<Predecl...@>=
extern int strlen(); /* length of string */
extern int strcmp(); /* compare strings lexicographically */
extern char* strcpy(); /* copy one string to another */
extern int strncmp(); /* compare up to $n$ string characters */
extern char* strncpy(); /* copy up to $n$ string characters */
@y
@z

Section 3.

@x l.92
int main (ac, av)
int ac;
char **av;
@y
int main (int ac, char **av)
@z

@x l.100 - Add Web2C version to banner.
  if (show_banner) printf(banner); /* print a ``banner line'' */
@y
  if (show_banner) {
    printf("%s%s\n", banner, versionstring); /* print a ``banner line'' */
  }
@z

Section 5.

@x common.h l.30 - boolean comes from kpathsea.
typedef short boolean;
@y
@z

Section 6.

@x l.36
#include <stdio.h>
@y
#include <stdio.h>
/* #include "cpascal.h" ??? */
extern char *versionstring;
#include <kpathsea/kpathsea.h>
@z

Section 9.

@x common.h l.109
extern name_pointer id_lookup(); /* looks up a string in the identifier table */
extern name_pointer section_lookup(); /* finds section name */
extern void print_section_name(), sprint_section_name();
@y
/* looks up a string in the identifier table */
extern name_pointer id_lookup (char*, char*, char);
/* finds section name */
extern name_pointer section_lookup (char*, char*, char);
extern void print_section_name (name_pointer);
extern void sprint_section_name (char*, name_pointer);
@z

Section 10.

@x common.h l.123 - explicit types.
extern history; /* indicates how bad this run was */
extern err_print(); /* print error message and context */
extern wrap_up(); /* indicate |history| and exit */
extern void fatal(); /* issue error message and die */
extern void overflow(); /* succumb because a table has overflowed */
@y
extern int history; /* indicates how bad this run was */
extern void err_print (char*); /* print error message and context */
extern int wrap_up (void); /* indicate |history| and exit */
extern void fatal (char*, char*); /* issue error message and die */
extern void overflow (char*); /* succumb because a table has overflowed */
@z

Section 11.

@x common.h l.131 - max_file_name_length is way too small.
@d max_file_name_length 60
@y
@d max_file_name_length 1024
@z

@x common.h l.138 - explicit types.
extern include_depth; /* current level of nesting */
@y
extern int include_depth; /* current level of nesting */
@z

@x common.h l.148 - explicit types.
extern line[]; /* number of current line in the stacked files */
extern change_line; /* number of current line in change file */
@y
extern int line[]; /* number of current line in the stacked files */
extern int change_line; /* number of current line in change file */
@z

@x common.h l.153 - explicit types.
extern reset_input(); /* initialize to read the web file and change file */
extern get_line(); /* inputs the next line */
extern check_complete(); /* checks that all changes were picked up */
@y
extern void reset_input (void); /* initialize to read the web file and change file */
extern int get_line (void); /* inputs the next line */
extern void check_complete (void); /* checks that all changes were picked up */
@z

Section 15.

@x common.h l.192
extern void common_init();
@y
extern void common_init (void);
@z

Section 21.

@x l.184
int names_match(p,first,l)
name_pointer p; /* points to the proposed match */
char *first; /* position of first character of string */
int l; /* length of identifier */
@y
int names_match (name_pointer p, char *first, int l, char t)
@z

Section 22.

@x l.200
init_node(node)
name_pointer node;
@y
init_node (name_pointer node)
@z

@x l.207
init_p() {}
@y
init_p (name_pointer p, char t) {}
@z

Section 26.

@x l.262
store_two_bytes(x)
sixteen_bits x;
@y
store_two_bytes (sixteen_bits x)
@z

Section 30.

@x l.338
push_level(p) /* suspends the current level */
name_pointer p;
@y
push_level (name_pointer p) /* suspends the current level */
@z

Section 31.

@x l.357
pop_level(flag) /* do this when |cur_byte| reaches |cur_end| */
int flag; /* |flag==0| means we are in |output_defs| */
@y
pop_level (int flag) /* do this when |cur_byte| reaches |cur_end| */
@z

Section 33.

@x l.393
get_output() /* sends next token to |out_char| */
@y
get_output (void) /* sends next token to |out_char| */
@z

Section 37.

@x l.483
flush_buffer() /* writes one line to output file */
@y
flush_buffer (void) /* writes one line to output file */
@z

Section 41.

@x l.534
void phase_two();
@y
void phase_two (void);
@z

Section 42.

@x l.538
phase_two () {
@y
phase_two (void) {
@z

Section 46.

@x l.603
void output_defs();
@y
void output_defs (void);
@z

Section 47.

@x l.607
output_defs()
@y
output_defs (void)
@z

Section 48.

@x l.649
static void out_char();
@y
static void out_char (eight_bits);
@z

Section 49.

@x l.653
out_char(cur_char)
eight_bits cur_char;
@y
out_char (eight_bits cur_char)
@z

Section 58.

@x l.815
skip_ahead() /* skip to next control code */
@y
skip_ahead (void) /* skip to next control code */
@z

Section 60.

@x l.849
int skip_comment(is_long_comment) /* skips over comments */
boolean is_long_comment;
@y
int skip_comment (boolean is_long_comment) /* skips over comments */
@z

Section 62

@x l.889 - add declaration of versionstring.
#include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
@y
@z

Section 63.

@x l.902
get_next() /* produces the next input token */
@y
get_next (void) /* produces the next input token */
@z

Section 76.

@x l.1201
scan_repl(t) /* creates a replacement text */
eight_bits t;
@y
scan_repl (eight_bits t) /* creates a replacement text */
@z

Section 83.

@x l.1359
scan_section()
@y
scan_section (void)
@z

Section 90.

@x l.1458
void phase_one();
@y
void phase_one (void);
@z

Section 91.

@x l.1462
phase_one() {
@y
phase_one (void) {
@z

Section 92.

@x l.1476
void skip_limbo();
@y
void skip_limbo (void);
@z

Section 93.

@x l.1480
skip_limbo()
@y
skip_limbo (void)
@z

Section 95.

@x l.1535
print_stats() {
@y
print_stats (void) {
@z