OSDN Git Service

removed some unused functions and headers.
[putex/putex.git] / src / texsourc / itex.c
1 /* Copyright 1992 Karl Berry
2    Copyright 2007 TeX Users Group
3    Copyright 2014 Clerk Ma
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301 USA.  */
19
20 #ifdef _WINDOWS
21   #define NOCOMM
22   #define NOSOUND
23   #define NODRIVERS
24   #define STRICT
25   #pragma warning(disable:4115) // kill rpcasync.h complaint
26   #include <windows.h>
27   #define MYLIBAPI __declspec(dllexport)
28 #endif
29
30 #pragma warning(disable:4996)
31 #pragma warning(disable:4131) // old style declarator
32 #pragma warning(disable:4135) // conversion between different integral types
33 #pragma warning(disable:4127) // conditional expression is constant
34
35 #include <setjmp.h>
36
37 #define EXTERN extern
38
39 #include "texd.h"
40
41 #pragma warning(disable:4244) /* 96/Jan/10 */
42
43 #include <time.h>
44
45 #define BEGINFMTCHECKSUM 367403084L
46 #define ENDFMTCHECKSUM   69069L
47
48 extern clock_t start_time, main_time, finish_time; /* in local.c */
49
50 /* imported from pascal.h */
51 /* localized here to avoid conflict with io.h in other code */
52
53 #define read(f, b) ((b) = getc (f))
54
55
56 #ifdef INITEX
57   void do_initex (void); /* later in this file */
58 #endif
59
60 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
61 /* sec 0004 */
62 void initialize (void)
63 {
64   integer i; 
65   integer k; 
66   integer flag; /* bkph */
67
68 #ifndef ALLOCATEHYPHEN
69   hyph_pointer z;
70 #endif
71
72 /* We already initialized xchr if we are using non_ascii setup */
73 /* Normally, there is no translation of character code numbers */
74   if (!non_ascii)
75   {
76     for (i = 0; i <= 255; i++)
77       xchr[i] = (char) i;
78 /* This is a kind of joke, since the characters are given as numeric codes ! */
79 #ifdef JOKE
80     xchr[32] = ' ';  xchr[33] = '!';  xchr[34] = '"';  xchr[35] = '#';
81     xchr[36] = '$';  xchr[37] = '%';  xchr[38] = '&';  xchr[39] = '\'';
82     xchr[40] = '(';  xchr[41] = ')';  xchr[42] = '*';  xchr[43] = '+';
83     xchr[44] = ',';  xchr[45] = '-';  xchr[46] = '.';  xchr[47] = '/';
84     xchr[48] = '0';  xchr[49] = '1';  xchr[50] = '2';  xchr[51] = '3';
85     xchr[52] = '4';  xchr[53] = '5';  xchr[54] = '6';  xchr[55] = '7';
86     xchr[56] = '8';  xchr[57] = '9';  xchr[58] = ':';  xchr[59] = ';';
87     xchr[60] = '<';  xchr[61] = '=';  xchr[62] = '>';  xchr[63] = '?';
88     xchr[64] = '@';  xchr[65] = 'A';  xchr[66] = 'B';  xchr[67] = 'C';
89     xchr[68] = 'D';  xchr[69] = 'E';  xchr[70] = 'F';  xchr[71] = 'G';
90     xchr[72] = 'H';  xchr[73] = 'I';  xchr[74] = 'J';  xchr[75] = 'K';
91     xchr[76] = 'L';  xchr[77] = 'M';  xchr[78] = 'N';  xchr[79] = 'O';
92     xchr[80] = 'P';  xchr[81] = 'Q';  xchr[82] = 'R';  xchr[83] = 'S';
93     xchr[84] = 'T';  xchr[85] = 'U';  xchr[86] = 'V';  xchr[87] = 'W';
94     xchr[88] = 'X';  xchr[89] = 'Y';  xchr[90] = 'Z';  xchr[91] = '[';
95     xchr[92] = '\\'; xchr[93] = ']';  xchr[94] = '^';  xchr[95] = '_';
96     xchr[96] = '`';  xchr[97] = 'a';  xchr[98] = 'b';  xchr[99] = 'c';
97     xchr[100] = 'd'; xchr[101] = 'e'; xchr[102] = 'f'; xchr[103] = 'g';
98     xchr[104] = 'h'; xchr[105] = 'i'; xchr[106] = 'j'; xchr[107] = 'k';
99     xchr[108] = 'l'; xchr[109] = 'm'; xchr[110] = 'n'; xchr[111] = 'o';
100     xchr[112] = 'p'; xchr[113] = 'q'; xchr[114] = 'r'; xchr[115] = 's';
101     xchr[116] = 't'; xchr[117] = 'u'; xchr[118] = 'v'; xchr[119] = 'w';
102     xchr[120] = 'x'; xchr[121] = 'y'; xchr[122] = 'z'; xchr[123] = '{';
103     xchr[124] = '|'; xchr[125] = '}'; xchr[126] = '~';
104
105     for (i = 0; i <= 31; i++)
106       xchr[i] = chr(i);
107
108     for (i = 127; i <= 255; i++)
109       xchr[i]= chr(i);
110 #endif /* end of JOKE */
111   }
112 /* end of plain ASCII case (otherwise have read in xchr vector before) */
113 /* Fill in background of `delete' for inverse mapping                  */
114   for (i = 0; i <= 255; i++)
115     xord[chr(i)] = 127;
116
117 #ifdef JOKE
118   for (i = 128; i <= 255 ; i++)
119     xord[xchr[i]] = i;
120
121   for (i = 0; i <= 126; i++)
122     xord[xchr[i]] = i;
123 #endif
124   
125 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
126 /* Now invert the xchr mapping to get xord mapping */
127   for (i = 0; i <= 255; i++)
128     xord[xchr[i]] = (char) i;
129
130   xord[127] = 127; /* hmm, a fixed point ? why ? */
131
132   flag = 0; /* 93/Dec/28 - bkph */
133
134   if (trace_flag != 0)
135   {
136 /*  entries in xord / xchr */
137     for (k = 0; k < 256; k++)
138       if (xord[k] != k)
139       {
140         flag = 1;
141         break;
142       }
143 /* 127 here means mapping undefined */
144     if (flag)
145     {
146       show_line("Inverted mapping xord[] pairs:\n", 0);
147
148       for (k = 0; k < 256; k++)
149       {
150 /*  entries in xord / xchr */
151         if (xord[k] != 127)
152         {
153           sprintf(log_line, "%d => %d\n", k, xord[k]);
154           show_line(log_line, 0);
155         }
156       }
157     }
158   }
159 /* may now set in local.c bkph */
160   if (interaction < 0)
161     interaction = error_stop_mode;
162
163   deletions_allowed = true;
164   set_box_allowed = true;
165   error_count = 0;
166   help_ptr = 0;
167   use_err_help = false;
168   interrupt = 0;
169   OK_to_interrupt = true;
170 /* darn, need to know mem_top, mem_max etc for the following ... */
171 #ifdef DEBUG
172   was_mem_end = mem_min;
173 /*  was_lo_max = mem_min; */
174   was_lo_max = mem_bot;
175 /*  was_hi_min = mem_max; */
176   was_hi_min = mem_top;
177   panicking = false;
178 #endif /* DEBUG */
179   nest_ptr = 0;
180   max_nest_stack = 0;
181   mode = 1;
182   head = contrib_head;
183   tail = contrib_head;
184   cur_list.aux_field.cint = ignore_depth;
185   mode_line = 0;
186   prev_graf = 0;
187   shown_mode = 0;
188   page_contents = 0;
189   page_tail = page_head;
190 #ifdef ALLOCATEMAIN
191   if (is_initex) /* in iniTeX we did already allocate mem [] */
192 #endif
193     mem[page_head].hh.v.RH = 0;
194 /*  last_glue = 262143L;  */ /* NO! */
195   last_glue = empty_flag;
196   last_penalty = 0;
197   last_kern = 0;
198   page_so_far[7] = 0;
199   page_max_depth = 0;
200
201   for (k = int_base; k <= eqtb_size; k++)
202     xeq_level[k] = level_one;
203
204   no_new_control_sequence = true;
205   next(hash_base) = 0;
206   text(hash_base) = 0;
207
208   for (k = hash_base + 1; k <= undefined_control_sequence - 1; k++)
209     hash[k] = hash[hash_base];
210
211   save_ptr = 0;
212   cur_level = 1;
213   cur_group = 0;
214   cur_boundary = 0;
215   max_save_stack = 0;
216   mag_set = 0;
217   cur_mark[0] = 0;
218   cur_mark[1] = 0;
219   cur_mark[2] = 0;
220   cur_mark[3] = 0;
221   cur_mark[4] = 0;
222   cur_val = 0;
223   cur_val_level = 0;
224   radix = 0;
225   cur_order = 0;
226
227   for (k = 0; k <= 16; k++)
228     read_open[k] = 2;
229
230   cond_ptr = 0;
231   if_limit = 0;
232   cur_if = 0;
233   if_line = 0;
234
235   for (k = 0; k <= font_max; k++)
236     font_used[k] = false;
237
238   null_character.b0 = 0;
239   null_character.b1 = 0;
240   null_character.b2 = 0;
241   null_character.b3 = 0;
242   total_pages = 0;
243   max_v = 0;
244   max_h = 0;
245   max_push = 0;
246   last_bop = -1;
247   doing_leaders = false;
248   dead_cycles = 0;
249   cur_s = -1;
250   half_buf = dvi_buf_size / 2;
251   dvi_limit = dvi_buf_size;
252   dvi_ptr = 0;
253   dvi_offset = 0;
254   dvi_gone = 0;
255   down_ptr = 0;
256   right_ptr = 0;
257   adjust_tail = 0;
258   last_badness = 0;
259   pack_begin_line = 0;
260   empty_field.v.RH = 0;
261   empty_field.v.LH = 0;
262   null_delimiter.b0 = 0;
263   null_delimiter.b1 = 0;
264   null_delimiter.b2 = 0;
265   null_delimiter.b3 = 0;
266   align_ptr = 0;
267   cur_align = 0;
268   cur_span = 0;
269   cur_loop = 0;
270   cur_head = 0;
271   cur_tail = 0;
272 /*  *not* OK with ALLOCATEHYPHEN, since may not be allocated yet */
273 #ifndef ALLOCATEHYPHEN
274   for (z = 0; z <= hyphen_prime; z++)
275   {
276     hyph_word[z]= 0;
277     hyph_list[z]= 0;
278   }
279 #endif
280   hyph_count = 0;
281   output_active = false;
282   insert_penalties = 0;
283   ligature_present = false;
284   cancel_boundary = false;
285   lft_hit = false;
286   rt_hit = false;
287   ins_disc = false;
288   after_token = 0;
289   long_help_seen = false;
290   format_ident = 0;
291
292   for (k = 0; k <= 17; k++)
293     write_open[k] = false;
294
295   edit_name_start = 0;
296 #ifdef INITEX
297 /* initex stuff split off for convenience of optimization adjustments */
298   if (is_initex)
299   {
300     do_initex();
301   }
302 #else
303 /* trap the -i on command line situation if INITEX was NOT defined */
304   if (is_initex)
305   {
306     show_line("Sorry, somebody forgot to make an INITEX!\n", 1);
307   }
308 #endif /* not INITEX */
309 }
310
311 /* do the part of initialize() that requires mem_top, mem_max or mem[] */
312 /* do this part after allocating main memory */
313
314 #ifdef ALLOCATEMAIN
315 void initialize_aux (void)
316 {
317 #ifdef DEBUG
318   was_mem_end = mem_min;
319 /*  was_lo_max = mem_min; */
320   was_lo_max = mem_bot;
321 /*  was_hi_min = mem_max; */
322   was_hi_min = mem_top;
323   panicking = false;
324 #endif /* DEBUG */
325 /*  nest_ptr = 0; */
326 /*  max_nest_stack = 0; */
327   mode = 1;
328   head = contrib_head;
329   tail = contrib_head;
330   cur_list.aux_field.cint = ignore_depth;
331   mode_line = 0;
332   prev_graf = 0;
333 /*  shown_mode = 0; */
334 /*  page_contents = 0; */
335   page_tail = page_head;
336   link(page_head) = 0;
337 }
338 #endif  // end of ifdef ALLOCATEMAIN
339 /* sec 0815 */
340 void line_break_ (integer final_widow_penalty)
341 {
342   bool auto_breaking;
343   halfword prevp;
344   halfword q, r, s, prevs;
345   internal_font_number f;
346 /*  small_number j;  */
347   int j;                /* 95/Jan/7 */
348 /*  unsigned char c;  */
349   unsigned int c;           /* 95/Jan/7 */
350 /*  savedbadness = 0; */    /* 96/Feb/9 */
351
352   pack_begin_line = mode_line;
353   link(temp_head) = link(head);
354
355   if ((tail >= hi_mem_min))
356   {
357     tail_append(new_penalty(inf_penalty));
358   } 
359   else if (type(tail) != glue_node)
360   {
361     tail_append(new_penalty(inf_penalty));
362   }
363   else
364   {
365     type(tail) = penalty_node;
366     delete_glue_ref(glue_ptr(tail));
367     flush_node_list(leader_ptr(tail));
368     penalty(tail) = inf_penalty;
369   }
370
371   link(tail) = new_param_glue(par_fill_skip_code);
372   init_cur_lang = prev_graf % 65536L;
373   init_l_hyf = prev_graf / 4194304L; /* 2^22 */
374   init_r_hyf = (prev_graf / 65536L) % 64;
375   pop_nest();
376   no_shrink_error_yet = true;
377
378   if ((shrink_order(left_skip) != normal) && (shrink(left_skip) != 0))
379   {
380     left_skip = finite_shrink(left_skip);
381   }
382
383   if ((shrink_order(right_skip) != normal) && (shrink(right_skip) != 0))
384   {
385     right_skip = finite_shrink(right_skip);
386   }
387
388   q = left_skip;
389   r = right_skip;
390   background[1] = width(q) + width(r);
391   background[2] = 0;
392   background[3] = 0;
393   background[4] = 0;
394   background[5] = 0;
395   background[2 + stretch_order(q)] = stretch(q);
396   background[2 + stretch_order(r)] = background[2 + stretch_order(r)] + stretch(r);
397   background[6] = shrink(q) + shrink(r);
398
399   minimum_demerits = 1073741823L; /* 2^30 - 1 *//* 40000000 hex - 1 */
400   minimal_demerits[tight_fit] = 1073741823L;
401   minimal_demerits[decent_fit] = 1073741823L;
402   minimal_demerits[loose_fit] = 1073741823L;
403   minimal_demerits[very_loose_fit] = 1073741823L;
404
405   if (par_shape_ptr == 0)
406     if (hang_indent == 0)
407     {
408       last_special_line = 0;
409       second_width = hsize;
410       second_indent = 0;
411     }
412     else
413     {
414       last_special_line = abs(hang_after);
415
416       if (hang_after < 0)
417       {
418         first_width = hsize - abs(hang_indent);
419
420         if (hang_indent >= 0)
421           first_indent = hang_indent;
422         else
423           first_indent = 0;
424
425         second_width = hsize;
426         second_indent = 0;
427       }
428       else
429       {
430         first_width = hsize;
431         first_indent = 0;
432         second_width = hsize - abs(hang_indent);
433
434         if (hang_indent >= 0)
435           second_indent = hang_indent;
436         else
437           second_indent = 0;
438       }
439     }
440   else
441   {
442     last_special_line = info(par_shape_ptr) - 1;
443     second_width = mem[par_shape_ptr + 2 * (last_special_line + 1)].cint;
444     second_indent = mem[par_shape_ptr + 2 * last_special_line + 1].cint;
445   }
446
447   if (looseness == 0)
448     easyline = last_special_line;
449   else
450     easyline = empty_flag;
451
452   threshold = pretolerance;
453
454   if (threshold >= 0)
455   {
456 #ifdef STAT
457     if (tracing_paragraphs > 0)
458     {
459       begin_diagnostic();
460       print_nl("@firstpass");
461     }
462 #endif /* STAT */
463     second_pass = false;
464     final_pass = false;
465     first_pass_count++; /* 96 Feb 9 */
466   }
467   else
468   {
469     threshold = tolerance;
470     second_pass = true;
471     final_pass = (emergency_stretch <= 0);
472 #ifdef STAT
473     if (tracing_paragraphs > 0)
474       begin_diagnostic();
475 #endif /* STAT */
476   }
477
478   while (true)
479   {
480     if (threshold > inf_bad)
481       threshold = inf_bad;
482
483     if (second_pass)
484     {
485 #ifdef INITEX
486       if (is_initex)
487       {
488         if (trie_not_ready)
489           init_trie();
490       } /* bkph */
491 #endif /* INITEX */
492
493       cur_lang = init_cur_lang;
494       lhyf = init_l_hyf;
495       rhyf = init_r_hyf;
496     }
497
498     q = get_node(3);
499     type(q) = unhyphenated;
500     fitness(q) = decent_fit;
501     link(q) = active;
502     break_node(q) = 0;
503     line_number(q) = prev_graf + 1;
504     total_demerits(q) = 0;
505     link(active) = q;
506     active_width[1] = background[1];
507     active_width[2] = background[2];
508     active_width[3] = background[3];
509     active_width[4] = background[4];
510     active_width[5] = background[5];
511     active_width[6] = background[6];
512
513     passive = 0;
514     printed_node = temp_head;
515     pass_number = 0;
516     font_in_short_display = 0;
517
518     cur_p = link(temp_head);
519     auto_breaking = true;
520     prevp = cur_p;
521
522     while((cur_p != 0) && (link(active) != active))
523     {
524       if ((cur_p >= hi_mem_min))
525       {
526         prevp = cur_p;
527
528         do
529           {
530             f = font(cur_p);
531             active_width[1] = active_width[1] + char_width(f, char_info(f, character(cur_p)));
532             cur_p = link(cur_p);
533           }
534         while(!(!(cur_p >= hi_mem_min)));
535       }
536
537       switch(type(cur_p))
538       {
539         case hlist_node:
540         case vlist_node:
541         case rule_node:
542           active_width[1] = active_width[1] + width(cur_p);
543           break;
544         case whatsit_node:
545           if (subtype(cur_p) == language_node)
546           {
547             cur_lang = what_lang(cur_p);
548             lhyf = what_lhm(cur_p);
549             rhyf = what_rhm(cur_p);
550           }
551           break;
552         case glue_node:
553           {
554             if (auto_breaking)
555             {
556               if ((prevp >= hi_mem_min))
557                 try_break(0, unhyphenated);
558               else if ((mem[prevp].hh.b0 < 9))
559                 try_break(0, unhyphenated);
560               else if ((type(prevp) == kern_node) && (subtype(prevp) != explicit))
561                 try_break(0, unhyphenated);
562             }
563
564             if ((mem[glue_ptr(cur_p)].hh.b1 != 0) && (mem[glue_ptr(cur_p) + 3].cint != 0))
565             {
566               glue_ptr(cur_p) = finite_shrink(glue_ptr(cur_p));
567             }
568
569             q = glue_ptr(cur_p);
570             active_width[1] = active_width[1]+ width(q);
571             active_width[2 + stretch_order(q)] = active_width[2 + stretch_order(q)] + stretch(q);
572             active_width[6] = active_width[6] + shrink(q);
573
574             if (second_pass && auto_breaking)
575             {
576               prevs = cur_p;
577               s = link(prevs);
578
579               if (s != 0)
580               {
581                 while (true)
582                 {
583                   if ((s >= hi_mem_min))
584                   {
585                     c = character(s);
586                     hf = font(s);
587                   }
588                   else if (type(s) == ligature_node)
589                     if (lig_ptr(s) == 0)
590                       goto lab22;
591                     else
592                     {
593                       q = lig_ptr(s);
594                       c = character(q);
595                       hf = font(q);
596                     }
597                   else if ((type(s) == kern_node) && (subtype(s) == normal))
598                     goto lab22;
599                   else if (type(s) == whatsit_node)
600                   {
601                     if (subtype(s) == language_node)
602                     {
603                       cur_lang = what_lang(s);
604                       lhyf = what_lhm(s);
605                       rhyf = what_rhm(s);
606                     }
607                     goto lab22;
608                   }
609                   else
610                     goto lab31;
611
612                   if (lc_code(c) != 0)
613                     if ((lc_code(c) == (halfword) c) || (uc_hyph > 0)) /* fixed signed tyoe */
614                       goto lab32;
615                     else
616                       goto lab31;
617 lab22:
618                   prevs = s;
619                   s = link(prevs);
620                 }
621 lab32:
622                 hyf_char = hyphen_char[hf];
623
624                 if (hyf_char < 0)
625                   goto lab31; 
626
627                 if (hyf_char > 255)
628                   goto lab31; /* ? */
629
630                 ha = prevs;
631
632                 if (lhyf + rhyf > 63)
633                   goto lab31;
634
635                 hn = 0;
636
637                 while (true)
638                 {
639                   if ((s >= hi_mem_min))
640                   {
641                     if (font(s) != hf)
642                       goto lab33;
643
644                     hyfbchar = character(s);
645
646                     c = hyfbchar;     /*  unsigned char c;  */
647
648                     if (lc_code(c) == 0)
649                       goto lab33;
650
651                     if (hn == 63)
652                       goto lab33;
653
654                     hb = s;
655                     incr(hn);
656                     hu[hn] = c;
657                     hc[hn]= lc_code(c);
658                     hyfbchar = non_char;
659                   }
660                   else if (type(s) == ligature_node)
661                   {
662                     if (font(lig_char(s)) != hf)
663                       goto lab33;
664
665                     j = hn;
666                     q = lig_ptr(s);
667
668                     if (q != 0) /* 94/Mar/23 BUG FIX */
669                       hyfbchar = character(q);
670
671                     while (q != 0) /* 94/Mar/23 BUG FIX */
672                     {
673                       c = character(q);
674
675                       if (lc_code(c) == 0)
676                         goto lab33;
677
678                       if (j == 63)
679                         goto lab33;
680
681                       incr(j);
682                       hu[j] = c;
683                       hc[j] = lc_code(c);
684                       q = link(q);
685                     }
686
687                     hb = s;
688                     hn = j;
689
690                     if (odd(subtype(s)))
691                       hyfbchar = font_bchar[hf];
692                     else
693                       hyfbchar = non_char;
694                   }
695                   else if ((type(s) == kern_node) && (subtype(s) == normal))
696                   {
697                     hb = s;
698                     hyfbchar = font_bchar[hf];
699                   }
700                   else
701                     goto lab33;
702
703                   s = link(s);
704                 }
705 lab33:;
706                 if (hn < lhyf + rhyf)
707                   goto lab31;
708
709                 while (true)
710                 {
711                   if (!((s >= hi_mem_min)))
712                     switch(type(s))
713                     {
714                       case ligature_node:
715                         break;
716                       case kern_node:
717                         if (subtype(s) != normal)
718                           goto lab34;
719                         break;
720                       case whatsit_node:
721                       case glue_node:
722                       case penalty_node:
723                       case ins_node:
724                       case adjust_node:
725                       case mark_node:
726                         goto lab34;
727                         break;
728                       default:
729                         goto lab31;
730                         break;
731                     }
732                   s = link(s);
733                 }
734 lab34:;
735                 hyphenate();
736               }
737 lab31:;
738             }
739           }
740           break;
741         case kern_node:
742           if (subtype(cur_p) == explicit)
743           {
744             if (!(link(cur_p) >= hi_mem_min) && auto_breaking)
745               if (type(link(cur_p)) == glue_node)
746                 try_break(0, unhyphenated);
747
748             active_width[1] = active_width[1] + width(cur_p);
749           }
750           else
751             active_width[1] = active_width[1] + width(cur_p);
752           break;
753         case ligature_node:
754           {
755             f = font(lig_char(cur_p));
756             active_width[1] = active_width[1] + char_width(f, char_info(f, character(lig_char(cur_p))));
757           }
758           break;
759         case disc_node:
760           {
761             s = pre_break(cur_p);
762             disc_width = 0;
763
764             if (s == 0)
765               try_break(ex_hyphen_penalty, hyphenated);
766             else
767             {
768               do
769               {
770                 if ((s >= hi_mem_min))
771                 {
772                   f = font(s);
773                   disc_width = disc_width + char_width(f, char_info(f, character(s)));
774                 }
775                 else switch(type(s))
776                 {
777                   case ligature_node:
778                     {
779                       f = font(lig_char(s));
780                       disc_width = disc_width + font_info[width_base[f] + font_info[char_base[f]+ mem[s + 1].hh.b1].qqqq.b0].cint;
781                     }
782                     break;
783                   case hlist_node:
784                   case vlist_node:
785                   case rule_node:
786                   case kern_node:
787                     disc_width = disc_width + width(s);
788                     break;
789                   default:
790                     {
791                       confusion("disc3");
792                       return;       // abort_flag set
793                     }
794                     break;
795                 }
796                 s = link(s);
797               }
798               while(!(s == 0));
799
800               active_width[1] = active_width[1] + disc_width;
801               try_break(hyphen_penalty, hyphenated);
802               active_width[1] = active_width[1] - disc_width;
803             }
804             r = replace_count(cur_p);
805             s = link(cur_p);
806
807             while (r > 0)
808             {
809               if ((s >= hi_mem_min))
810               {
811                 f = font(s);
812                 active_width[1] = active_width[1] + char_width(f, char_info(f, character(s)));
813               }
814               else switch(type(s))
815               {
816                 case ligature_node:
817                   {
818                     f = font(lig_char(s));
819                     active_width[1] = active_width[1] + char_width(f, char_info(f, character(lig_char(s))));
820                   }
821                   break;
822                 case hlist_node:
823                 case vlist_node:
824                 case rule_node:
825                 case kern_node:
826                   active_width[1] = active_width[1] + width(s);
827                   break;
828                 default:
829                   {
830                     confusion("disc4");
831                     return;       // abort_flag set
832                   }
833                   break;
834               }
835               decr(r);
836               s = link(s);
837             }
838             prevp = cur_p;
839             cur_p = s;
840             goto lab35;
841           }
842           break;
843         case math_node:
844           {
845             auto_breaking = (subtype(cur_p) == 1);
846             {
847               if (!(link(cur_p) >= hi_mem_min) && auto_breaking)
848                 if (type(link(cur_p)) == glue_node)
849                   try_break(0, unhyphenated);
850
851               active_width[1] = active_width[1] + width(cur_p);
852             }
853           }
854           break;
855         case penalty_node:
856           try_break(penalty(cur_p), unhyphenated);
857           break;
858         case mark_node:
859         case ins_node:
860         case adjust_node:
861           break;
862         default:
863           {
864             confusion("paragraph");
865             return;       // abort_flag set
866           }
867           break;
868       }
869       prevp = cur_p;
870       cur_p = link(cur_p);
871 lab35:;
872     }
873
874     if (cur_p == 0)
875     {
876       try_break(eject_penalty, hyphenated);
877
878       if (link(active) != active)
879       {
880         r = link(active);
881         fewest_demerits = 1073741823L; /* 2^30 - 1 */
882
883         do
884         {
885           if (type(r) != 2)
886             if (total_demerits(r) < fewest_demerits)
887             {
888               fewest_demerits = total_demerits(r);
889               best_bet = r;
890             }
891           r = link(r);
892         }
893         while (!(r == active));
894         best_line = line_number(best_bet);
895
896         if (looseness == 0)
897         {
898           goto lab30;           /* normal exit */
899         }
900
901         {
902           r = link(active);
903           actual_looseness = 0;
904           do
905           {
906             if (type(r) != 2)
907             {
908               line_diff = toint(line_number(r)) - toint(best_line);
909
910               if (((line_diff < actual_looseness) && (looseness <= line_diff)) ||
911                   ((line_diff > actual_looseness) && (looseness >= line_diff)))
912               {
913                 best_bet = r;
914                 actual_looseness = line_diff;
915                 fewest_demerits = total_demerits(r);
916               }
917               else if ((line_diff == actual_looseness) && (total_demerits(r) < fewest_demerits))
918               {
919                 best_bet = r;
920                 fewest_demerits = total_demerits(r);
921               }
922             }
923             r = link(r);
924           }
925           while (!(r == active));
926           best_line = line_number(best_bet);
927         }
928
929         if ((actual_looseness == looseness) || final_pass)
930         {
931           goto lab30;
932         }
933       }
934     }
935
936     q = link(active);
937
938     while (q != active)
939     {
940       cur_p = link(q);
941
942       if (type(q) == 2)
943         free_node(q, 7);
944       else
945         free_node(q, 3);
946
947       q = cur_p;
948     }
949
950     q = passive;
951
952     while (q != 0)
953     {
954       cur_p = link(q);
955       free_node(q, 2);
956       q = cur_p;
957     }
958
959     if (! second_pass)
960     {
961 #ifdef STAT
962       if (tracing_paragraphs > 0)
963         print_nl("@secondpass");
964 #endif /* STAT */
965       threshold = tolerance;
966       second_pass = true;
967       second_pass_count++;          /* 96 Feb 9 */
968       final_pass = (emergency_stretch <= 0);
969     }
970     else
971     {
972 #ifdef STAT
973       if (tracing_paragraphs > 0)
974         print_nl("@emergencypass");
975 #endif /* STAT */
976 /*     can only get here is \emergencystretch has been set positive */
977       background[2] = background[2] + emergency_stretch;
978       final_pass = true;
979       ++final_pass_count;         /* 96 Feb 9 */
980     } /* end of if second_pass */
981   } /* end of while(true)do */
982 /* cannot drop through from above loop */
983 lab30:                /* common exit point */
984   if (best_line == 2)
985     single_line++;
986
987 #ifdef STAT
988   if (tracing_paragraphs > 0)
989   {
990     end_diagnostic(true);
991     normalize_selector();
992   }
993 #endif /* STAT */
994
995   post_line_break(final_widow_penalty);
996   q = link(active);
997
998   while (q != active)
999   {
1000     cur_p = link(q);
1001
1002     if (type(q) == 2)
1003       free_node(q, 7);
1004     else
1005       free_node(q, 3);
1006
1007     q = cur_p;
1008   }
1009
1010   q = passive;
1011
1012   while (q != 0) /* while q<>null do l.16979 */
1013   {
1014     cur_p = link(q);
1015     free_node(q, 2);
1016     q = cur_p;
1017   }
1018
1019   pack_begin_line = 0;
1020 }
1021 /* sec 1211 */
1022 void prefixed_command (void)
1023 {
1024   small_number a;
1025   internal_font_number f;
1026   halfword j;
1027   font_index k;
1028   halfword p, q;
1029   integer n;
1030   bool e;
1031
1032   a = 0;
1033
1034   while (cur_cmd == prefix)
1035   {
1036     if (!odd(a / cur_chr))
1037       a = a + cur_chr;      /*   small_number a;  */
1038
1039     do
1040       {
1041         get_x_token();
1042       }
1043     while(!((cur_cmd != spacer) && (cur_cmd != relax)));
1044
1045     if (cur_cmd <= max_non_prefixed_command)
1046     {
1047       print_err("You can't use a prefix with `");
1048       print_cmd_chr(cur_cmd, cur_chr);
1049       print_char('\'');
1050       help1("I'll pretend you didn't say \\long or \\outer or \\global.");
1051       back_error();
1052       return;
1053     }
1054   }
1055
1056   if ((cur_cmd != def) && (a % 4 != 0))
1057   {
1058     print_err("You can't use `");
1059     print_esc("long");
1060     print_string("' or `");
1061     print_esc("outer");
1062     print_string("' with `");
1063     print_cmd_chr(cur_cmd, cur_chr); 
1064     print_char('\'');
1065     help1("I'll pretend you didn't say \\long or \\outer here.");
1066     error();
1067   }
1068
1069   if (global_defs != 0)
1070     if (global_defs < 0)
1071     {
1072       if ((a >= 4))
1073         a = a - 4;
1074     }
1075     else
1076     {
1077       if (!(a >= 4))
1078         a = a + 4;
1079     }
1080
1081   switch (cur_cmd)
1082   {
1083     case set_font:
1084       if ((a >= 4))
1085         geq_define(cur_font_loc, data, cur_chr);
1086       else
1087         eq_define(cur_font_loc, data, cur_chr);
1088       break;
1089
1090     case def:
1091       {
1092         if (odd(cur_chr) && !(a >= 4) && (global_defs >= 0))
1093           a = a + 4;
1094
1095         e = (cur_chr >= 2);
1096         get_r_token();
1097         p = cur_cs;
1098         q = scan_toks(true, e);
1099
1100         if ((a >= 4))
1101           geq_define(p, call + (a % 4), def_ref);
1102         else
1103           eq_define(p, call + (a % 4), def_ref);
1104       }
1105       break;
1106
1107     case let:
1108       {
1109         n = cur_chr;
1110         get_r_token();
1111         p = cur_cs;
1112
1113         if (n == 0)
1114         {
1115           do
1116             {
1117               get_token();
1118             }
1119           while (!(cur_cmd != spacer));
1120
1121           if (cur_tok == other_token + '=')
1122           {
1123             get_token();
1124
1125             if (cur_cmd == spacer)
1126               get_token();
1127           }
1128         }
1129         else
1130         {
1131           get_token();
1132           q = cur_tok;
1133           get_token();
1134           back_input();
1135           cur_tok = q;
1136           back_input();
1137         }
1138
1139         if (cur_cmd >= call)
1140           incr(mem[cur_chr].hh.v.LH);
1141
1142         if ((a >= 4))
1143           geq_define(p, cur_cmd, cur_chr);
1144         else
1145           eq_define(p, cur_cmd, cur_chr);
1146       }
1147       break;
1148
1149     case shorthand_def:
1150       {
1151         n = cur_chr;
1152         get_r_token();
1153         p = cur_cs;
1154
1155         if ((a >= 4))
1156           geq_define(p, relax, 256);
1157         else
1158           eq_define(p, relax, 256);
1159
1160         scan_optional_equals();
1161
1162         switch (n)
1163         {
1164           case char_def_code:
1165             {
1166               scan_char_num();
1167
1168               if ((a >= 4))
1169                 geq_define(p, char_given, cur_val);
1170               else
1171                 eq_define(p, char_given, cur_val);
1172             }
1173             break;
1174
1175           case math_char_def_code:
1176             {
1177               scan_fifteen_bit_int();
1178
1179               if ((a >= 4))
1180                 geq_define(p, math_given, cur_val);
1181               else
1182                 eq_define(p, math_given, cur_val);
1183             }
1184             break;
1185
1186           default:
1187             {
1188               scan_eight_bit_int();
1189
1190               switch (n)
1191               {
1192                 case count_def_code:
1193                   if ((a >= 4))
1194                     geq_define(p, assign_int, count_base + cur_val);
1195                   else
1196                     eq_define(p, assign_int, count_base + cur_val);
1197                   break;
1198
1199                 case dimen_def_code:
1200                   if ((a >= 4))
1201                     geq_define(p, assign_dimen, scaled_base + cur_val);
1202                   else
1203                     eq_define(p, assign_dimen, scaled_base + cur_val);
1204                   break;
1205
1206                 case skip_def_code:
1207                   if ((a >= 4)) 
1208                     geq_define(p, assign_glue, skip_base + cur_val);
1209                   else
1210                     eq_define(p, assign_glue, skip_base + cur_val);
1211                   break;
1212
1213                 case mu_skip_def_code:
1214                   if ((a >= 4))
1215                     geq_define(p, assign_mu_glue, mu_skip_base + cur_val);
1216                   else
1217                     eq_define(p, assign_mu_glue, mu_skip_base + cur_val);
1218                   break;
1219
1220                 case toks_def_code:
1221                   if ((a >= 4))
1222                     geq_define(p, assign_toks, toks_base + cur_val);
1223                   else
1224                     eq_define(p, assign_toks, toks_base + cur_val);
1225                   break;
1226               }
1227             }
1228             break;
1229         }
1230       }
1231       break;
1232
1233     case read_to_cs:
1234       {
1235         scan_int();
1236         n = cur_val;
1237
1238         if (! scan_keyword("to"))
1239         {
1240           print_err("Missing `to' inserted");
1241           help2("You should have said `\\read<number> to \\cs'.",
1242               "I'm going to look for the \\cs now.");
1243           error();
1244         }
1245
1246         get_r_token();
1247         p = cur_cs;
1248         read_toks(n, p);
1249
1250         if ((a >= 4))
1251           geq_define(p, call, cur_val);
1252         else
1253           eq_define(p, call, cur_val);
1254       }
1255       break;
1256
1257     case toks_register:
1258     case assign_toks:
1259       {
1260         q = cur_cs;
1261
1262         if (cur_cmd == toks_register)
1263         {
1264           scan_eight_bit_int();
1265           p = toks_base + cur_val;
1266         }
1267         else
1268           p = cur_chr;
1269
1270         scan_optional_equals();
1271
1272         do
1273           {
1274             get_x_token();
1275           }
1276         while(!((cur_cmd != spacer) && (cur_cmd != relax)));
1277
1278         if (cur_cmd != left_brace)
1279         {
1280           if (cur_cmd == toks_register)
1281           {
1282             scan_eight_bit_int();
1283             cur_cmd = assign_toks;
1284             cur_chr = toks_base + cur_val;
1285           }
1286
1287           if (cur_cmd == assign_toks)
1288           {
1289             q = equiv(cur_chr);
1290
1291             if (q == 0)
1292               if ((a >= 4))
1293                 geq_define(p, undefined_cs, 0);
1294               else
1295                 eq_define(p, undefined_cs, 0);
1296             else
1297             {
1298               incr(mem[q].hh.v.LH);
1299
1300               if ((a >= 4))
1301                 geq_define(p, call, q);
1302               else
1303                 eq_define(p, call, q);
1304             }
1305             goto lab30;
1306           }
1307         }
1308
1309         back_input();
1310         cur_cs = q;
1311         q = scan_toks(false, false);
1312
1313         if (link(def_ref) == 0)
1314         {
1315           if ((a >= 4))
1316             geq_define(p, undefined_cs, 0);
1317           else
1318             eq_define(p, undefined_cs, 0);
1319
1320           free_avail(def_ref);
1321         }
1322         else
1323         {
1324           if (p == output_routine_loc)
1325           {
1326             link(q) = get_avail();
1327             q = link(q);
1328             info(q) = right_brace_token + '}';
1329             q = get_avail();
1330             info(q) = left_brace_token + '{';
1331             link(q) = link(def_ref);
1332             link(def_ref) = q;
1333           }
1334
1335           if ((a >= 4))
1336             geq_define(p, call, def_ref);
1337           else
1338             eq_define(p, call, def_ref);
1339         }
1340       }
1341       break;
1342
1343     case assign_int:
1344       {
1345         p = cur_chr;
1346         scan_optional_equals();
1347         scan_int();
1348
1349         if ((a >= 4))
1350           geq_word_define(p, cur_val);
1351         else
1352           eq_word_define(p, cur_val);
1353       }
1354       break;
1355
1356     case assign_dimen:
1357       {
1358         p = cur_chr;
1359         scan_optional_equals();
1360         scan_dimen(false, false, false);
1361
1362         if ((a >= 4))
1363           geq_word_define(p, cur_val);
1364         else
1365           eq_word_define(p, cur_val);
1366       }
1367       break;
1368
1369     case assign_glue:
1370     case assign_mu_glue:
1371       {
1372         p = cur_chr;
1373         n = cur_cmd;
1374         scan_optional_equals();
1375
1376         if (n == assign_mu_glue)
1377           scan_glue(mu_val);
1378         else
1379           scan_glue(glue_val);
1380
1381         trap_zero_glue();
1382
1383         if ((a >= 4))
1384           geq_define(p, glue_ref, cur_val);
1385         else
1386           eq_define(p, glue_ref, cur_val);
1387       }
1388       break;
1389
1390     case def_code:
1391       {
1392         if (cur_chr == cat_code_base)
1393           n = max_char_code;
1394         else if (cur_chr == math_code_base)
1395           n = 32768L;                 /* 2^15 */
1396         else if (cur_chr == sf_code_base)
1397           n = 32767;                /* 2^15 - 1*/
1398         else if (cur_chr == del_code_base)
1399           n = 16777215L;              /* 2^24 - 1 */
1400         else
1401           n = 255;             /* 2^8 - 1 */
1402
1403         p = cur_chr;
1404         scan_char_num();
1405         p = p + cur_val;
1406         scan_optional_equals();
1407         scan_int();
1408
1409         if (((cur_val < 0) && (p < del_code_base)) ||(cur_val > n))
1410         {
1411           print_err("Invalid code(");
1412           print_int(cur_val);
1413
1414           if (p < del_code_base)
1415             print_string("), should be in the range 0..");
1416           else
1417             print_string("), should be at most ");
1418
1419           print_int(n);
1420           help1("I'm going to use 0 instead of that illegal code value.");
1421           error();
1422           cur_val = 0;
1423         }
1424
1425         if (p < math_code_base)
1426           if ((a >= 4))
1427             geq_define(p, data, cur_val);
1428           else
1429             eq_define(p, data, cur_val);
1430         else if (p < del_code_base)
1431           if ((a >= 4))
1432             geq_define(p, data, cur_val);
1433           else
1434             eq_define(p, data, cur_val);
1435         else 
1436           if ((a >= 4))
1437             geq_word_define(p, cur_val);
1438           else
1439             eq_word_define(p, cur_val);
1440       }
1441       break;
1442
1443     case def_family:
1444       {
1445         p = cur_chr;
1446         scan_four_bit_int();
1447         p = p + cur_val;
1448         scan_optional_equals();
1449         scan_font_ident();
1450
1451         if ((a >= 4))
1452           geq_define(p, data, cur_val);
1453         else
1454           eq_define(p, data, cur_val);
1455       }
1456       break;
1457
1458     case tex_register:
1459     case advance:
1460     case multiply:
1461     case divide:
1462       do_register_command(a);
1463       break;
1464
1465     case set_box:
1466       {
1467         scan_eight_bit_int();
1468
1469         if ((a >= 4))
1470           n = 256 + cur_val;
1471         else
1472           n = cur_val;
1473
1474         scan_optional_equals();
1475
1476         if (set_box_allowed)
1477         {
1478           scan_box(box_flag + n);
1479         }
1480         else
1481         {
1482           print_err("Improper ");
1483           print_esc("setbox");
1484           help2("Sorry, \\setbox is not allowed after \\halign in a display,",
1485               "or between \\accent and an accented character.");
1486           error();
1487         }
1488       }
1489       break;
1490
1491     case set_aux:
1492       alter_aux();
1493       break;
1494
1495     case set_prev_graf:
1496       alter_prev_graf();
1497       break;
1498
1499     case set_page_dimen:
1500       alter_page_so_far();
1501       break;
1502
1503     case set_page_int:
1504       alter_integer();
1505       break;
1506
1507     case set_box_dimen:
1508       alter_box_dimen();
1509       break;
1510
1511     case set_shape:
1512       {
1513         scan_optional_equals();
1514         scan_int();
1515         n = cur_val;
1516
1517         if (n <= 0)
1518           p = 0;
1519         else
1520         {
1521           p = get_node(2 * n + 1);
1522           info(p) = n;
1523
1524           for (j = 1; j <= n; j++)
1525           {
1526             scan_dimen(false, false, false);
1527             mem[p + 2 * j - 1].cint = cur_val;
1528             scan_dimen(false, false, false);
1529             mem[p + 2 * j].cint = cur_val;
1530           }
1531         }
1532
1533         if ((a >= 4))
1534           geq_define(par_shape_loc, shape_ref, p);
1535         else
1536           eq_define(par_shape_loc, shape_ref, p);
1537       }
1538       break;
1539
1540     case hyph_data:
1541       if (cur_chr == 1)
1542       {
1543 #ifdef INITEX
1544         if (is_initex)
1545         {
1546           new_patterns();
1547           goto lab30;
1548         }
1549 #endif /* INITEX */
1550         print_err("Patterns can be loaded only by INITEX");
1551         help_ptr = 0;
1552         error();
1553
1554         do
1555           {
1556             get_token();
1557           }
1558         while(!(cur_cmd == right_brace));
1559
1560         return;
1561       }
1562       else
1563       {
1564         new_hyph_exceptions();
1565         goto lab30;
1566       }
1567       break;
1568
1569     case assign_font_dimen:
1570       {
1571         find_font_dimen(true);
1572         k = cur_val;
1573         scan_optional_equals();
1574         scan_dimen(false, false, false);
1575         font_info[k].cint = cur_val;
1576       }
1577       break;
1578
1579     case assign_font_int:
1580       {
1581         n = cur_chr;
1582         scan_font_ident();
1583         f = cur_val;
1584         scan_optional_equals();
1585         scan_int();
1586
1587         if (n == 0)
1588           hyphen_char[f] = cur_val;
1589         else
1590           skew_char[f] = cur_val;
1591       }
1592       break;
1593
1594     case def_font:
1595       new_font(a);
1596       break;
1597
1598     case set_interaction:
1599       new_interaction();
1600       break;
1601
1602     default:
1603       {
1604         confusion("prefix");
1605         return;       // abort_flag set
1606       }
1607       break;
1608   } /* end of cur_cmd switch */
1609
1610 lab30:
1611   if (after_token != 0)
1612   {
1613     cur_tok = after_token;
1614     back_input();
1615     after_token = 0;
1616   }
1617 }
1618
1619 void bad_formator_pool (char *name, char *defaultname, char *envvar)
1620 {
1621   if (name == NULL)
1622     name = defaultname;
1623
1624   sprintf(log_line, "(Perhaps %s is for an older version of TeX)\n", name);
1625   show_line(log_line, 0);
1626   name_of_file[name_length + 1] = '\0';
1627   sprintf(log_line, "(Alternatively, %s may have been corrupted)\n", name_of_file + 1);
1628   show_line(log_line, 0);
1629   name_of_file[name_length + 1] = ' ';
1630   sprintf(log_line, "(Perhaps your %s environment variable is not set correctly)\n", envvar);
1631   show_line(log_line, 0);
1632
1633   {
1634     char *s;            /* extra info 99/April/28 */
1635
1636     if ((s = grabenv(envvar)) != NULL)
1637     {
1638       sprintf(log_line, "(%s=%s)\n", envvar, s);
1639       show_line(log_line, 0);
1640     }
1641     else
1642     {
1643       sprintf(log_line, "%s environment variable not set\n", envvar);
1644       show_line(log_line, 0);
1645     }
1646   }
1647 #ifndef _WINDOWS
1648   fflush(stdout);
1649 #endif
1650 }
1651 /* sec 1303 */
1652 bool load_fmt_file (void)
1653 {
1654   register bool Result;
1655   integer j, k;
1656   halfword p, q;
1657   integer x;
1658
1659   undump_int(x);
1660
1661   if (x != BEGINFMTCHECKSUM) /* magic FMT file start 4C 20 E6 15 hex */
1662     goto lab6666;
1663
1664   undump_int(x); /* mem_bot */
1665
1666   if (x != mem_bot)
1667     goto lab6666;
1668
1669   undump_int(x); /* mem_top */
1670
1671 #ifdef ALLOCATEMAIN
1672 /* we already read this once earlier to grab mem_top */
1673   if (trace_flag)
1674   {
1675     sprintf(log_line, "Read from fmt file mem_top = %d TeX words\n", x);
1676     show_line(log_line, 0);
1677   }
1678
1679   mem = allocate_main_memory(x); /* allocate main memory at this point */
1680
1681   if (mem == NULL)
1682     exit(1);                     /* redundant sanity test ! */
1683
1684   initialize_aux();              /* do `mem' part of initialize */
1685 /*  mem = zmem; */               /* update pointer to main memory */
1686 #endif
1687
1688   if (x != mem_top)
1689     goto lab6666;
1690
1691   undump_int(x); /* eqtbsize */
1692
1693   if (x != (eqtb_size))
1694     goto lab6666;
1695
1696   undump_int(x); /* hash_prime */
1697
1698   if (x != hash_prime)
1699     goto lab6666;
1700
1701   undump_int(x); /* hyphen_prime */
1702
1703 #ifdef ALLOCATEHYPHEN
1704 /* allow format files dumped with arbitrary (prime) hyphenation exceptions */
1705   realloc_hyphen(x); /* reset_hyphen(); */
1706   hyphen_prime = x;
1707 #endif
1708
1709   if (x != hyphen_prime)
1710     goto lab6666;
1711
1712   {
1713     undump_int(x); /* pool_size */
1714
1715     if (x < 0)
1716       goto lab6666; 
1717
1718 #ifdef ALLOCATESTRING
1719     if (x > current_pool_size)
1720     {
1721       if (trace_flag)
1722       {
1723         sprintf(log_line, "undump string pool reallocation (%d > %d)\n", x, current_pool_size);
1724         show_line(log_line, 0);
1725       }
1726       str_pool = realloc_str_pool (x - current_pool_size + increment_pool_size);
1727     }
1728     if (x > current_pool_size)   /* 94/Jan/24 */
1729 #else
1730     if (x > pool_size)
1731 #endif
1732     {
1733       sprintf(log_line, "%s%s\n",  "---! Must increase the ", "string pool size");
1734       show_line(log_line, 0);
1735       goto lab6666;
1736     }
1737     else
1738       pool_ptr = x;
1739   }
1740   {
1741     undump_int(x);  /* max_strings */
1742     if (x < 0)
1743       goto lab6666;
1744
1745 #ifdef ALLOCATESTRING
1746     if (x > current_max_strings)
1747     {
1748       if (trace_flag)
1749       {
1750         sprintf(log_line, "undump string pointer reallocation (%d > %d)\n", x, current_max_strings);
1751         show_line(log_line, 0);
1752       }
1753       str_start = realloc_str_start(x - current_max_strings + increment_max_strings);
1754     }
1755     if (x > current_max_strings) /* 94/Jan/24 */
1756 #else
1757     if (x > max_strings)
1758 #endif
1759     {
1760       sprintf(log_line,  "%s%s\n",  "---! Must increase the ", "max strings");
1761       show_line(log_line, 0);
1762       goto lab6666;
1763     }
1764     else
1765       str_ptr = x;
1766   }
1767
1768   if (undumpthings(str_start[0], str_ptr + 1)) /* undump string ptrs */
1769     return -1;
1770   if (undumpthings(str_pool[0], pool_ptr)) /*  undump string pool */
1771     return -1;
1772
1773   init_str_ptr = str_ptr;
1774   init_pool_ptr = pool_ptr;
1775 /*  undump the dynamic memory - paragraph 1312 in the book */
1776   {
1777     undump_int(x);
1778     if ((x < lo_mem_stat_max + 1000) || (x > hi_mem_stat_min - 1))
1779       goto lab6666;
1780     else
1781       lo_mem_max = x;
1782   }
1783   {
1784     undump_int(x);
1785     if ((x < lo_mem_stat_max + 1) || (x > lo_mem_max))
1786       goto lab6666;
1787     else
1788       rover = x;
1789   }
1790   p = 0;                  /* mem_bot */
1791   q = rover;
1792
1793   do
1794   {
1795     if (undumpthings(mem[p], q + 2 - p))
1796       return -1;
1797
1798     p = q + node_size(q);
1799
1800     if ((p > lo_mem_max) || ((q >= rlink(q)) && (rlink(q) != rover)))
1801       goto lab6666;
1802
1803     q = rlink(q);
1804   } while (!(q == rover));
1805
1806   if (undumpthings(mem[p], lo_mem_max + 1 - p))
1807     return -1;
1808
1809   if (mem_min < mem_bot - 2)          /*  ? splice in block below */
1810   {
1811 /*  or call add_variable_space(mem_bot - (mem_min + 1)) */
1812     if (trace_flag)
1813       show_line("Splicing in mem_min space in undump!\n", 0);
1814
1815     p = llink(rover);
1816     q = mem_min + 1;
1817     link(mem_min) = 0;       /* null */
1818     info(mem_min) = 0;       /* null */
1819     rlink(p) = q;
1820     llink(rover) = q;
1821     rlink(q) = rover;
1822     llink(q) = p;
1823     link(q) = empty_flag;
1824     node_size(q) = mem_bot - q;     /* ? size of block  */
1825   }
1826   {
1827     undump_int(x);
1828     if ((x < lo_mem_max + 1) || (x > hi_mem_stat_min))
1829       goto lab6666;
1830     else
1831       hi_mem_min = x;
1832   }
1833   {
1834     undump_int(x);
1835
1836     if ((x < mem_bot) || (x > mem_top))
1837       goto lab6666;
1838     else
1839       avail = x;
1840   }
1841   mem_end = mem_top;
1842
1843   if (undumpthings(mem[hi_mem_min], mem_end + 1 - hi_mem_min))
1844     return -1;
1845
1846   undump_int(var_used);
1847   undump_int(dyn_used);
1848
1849   k = active_base;
1850   do {
1851     undump_int(x);
1852     if ((x < 1) || (k + x > (eqtb_size + 1)))
1853       goto lab6666;
1854
1855     if (undumpthings(eqtb[k], x))
1856       return -1;
1857
1858     k = k + x;
1859     undump_int(x);
1860
1861     if ((x < 0) || (k + x > (eqtb_size + 1)))
1862       goto lab6666;
1863
1864     for (j = k; j <= k + x - 1; j++)
1865     {
1866       eqtb[j] = eqtb[k - 1];
1867     }
1868     k = k + x;
1869   } while(!(k > (eqtb_size)));
1870   {
1871     undump_int(x);
1872     if ((x < hash_base) || (x > (frozen_control_sequence)))  /*96/Jan/10*/
1873       goto lab6666;
1874     else
1875       par_loc = x;
1876   }
1877   par_token = 4095 + par_loc;
1878   {
1879     undump_int(x);
1880     if ((x < hash_base) || (x > (frozen_control_sequence))) /*96/Jan/10*/
1881       goto lab6666;
1882     else
1883       write_loc = x;
1884   }
1885   {
1886     undump_int(x);
1887     if ((x < hash_base) || (x > (frozen_control_sequence))) /*96/Jan/10*/
1888       goto lab6666;
1889     else
1890       hash_used = x;
1891   }
1892   p = hash_base - 1;
1893   do {
1894     {
1895       undump_int(x);
1896       if ((x < p + 1) || (x > hash_used))
1897         goto lab6666;
1898       else
1899         p = x;
1900     }
1901     undump_hh(hash[p]);
1902   } while (!(p == hash_used));
1903
1904   if (undumpthings(hash[hash_used + 1], (undefined_control_sequence - 1) - hash_used))
1905     return -1;
1906
1907   undump_int(cs_count);     /* cs_count */
1908   if (trace_flag)
1909   {
1910     sprintf(log_line, "itex undump cs_count %d ", cs_count); /* debugging */
1911     show_line(log_line, 0);
1912   }
1913   {
1914     undump_int(x);        /* font_mem_size */
1915     if (x < 7)
1916       goto lab6666;
1917 #ifdef ALLOCATEFONT
1918     if (trace_flag)
1919     {
1920       sprintf(log_line, "Read from fmt fmem_ptr = %d\n", x);
1921       show_line(log_line, 0);
1922     }
1923     if (x > current_font_mem_size) /* 93/Nov/28 dynamic allocate font_info */
1924     {
1925       if (trace_flag)
1926       {
1927         sprintf(log_line, "Undump realloc font_info (%d > %d)\n", x, current_font_mem_size);
1928         show_line(log_line, 0);
1929       }
1930       font_info = realloc_font_info (x - current_font_mem_size + increment_font_mem_size);
1931     }
1932     if (x > current_font_mem_size)  /* in case allocation failed 94/Jan/24 */
1933 #else
1934     if (x > font_mem_size)
1935 #endif
1936     {
1937       sprintf(log_line, "%s%s\n",  "---! Must increase the ", "font mem size");
1938       show_line(log_line, 0);
1939       goto lab6666;
1940     }
1941     else
1942       fmem_ptr = x;
1943   }
1944   {
1945     if (undumpthings(font_info[0], fmem_ptr))
1946       return -1;
1947     {
1948       undump_int(x); /* font_max */
1949       if (x < 0)
1950         goto lab6666;
1951       if (x > font_max)
1952       {
1953         sprintf(log_line, "%s%s\n",  "---! Must increase the ", "font max"); 
1954         show_line(log_line, 0);
1955         goto lab6666;
1956       }
1957       else
1958         font_ptr = x;
1959     }
1960     frozenfontptr = font_ptr; /* remember number of fonts frozen into format */
1961     if (undumpthings(font_check[0], font_ptr + 1))
1962       return -1;
1963     if (undumpthings(font_size[0], font_ptr + 1))
1964       return -1;
1965     if (undumpthings(font_dsize[0], font_ptr + 1))
1966       return -1;
1967     if (undumpthings(font_params[0], font_ptr + 1))
1968       return -1;
1969     if (undumpthings(hyphen_char[0], font_ptr + 1))
1970       return -1;
1971     if (undumpthings(skew_char[0], font_ptr + 1))
1972       return -1;
1973     if (undumpthings(font_name[0], font_ptr + 1))
1974       return -1;
1975     if (undumpthings(font_area[0], font_ptr + 1))
1976       return -1;
1977     if (undumpthings(font_bc[0], font_ptr + 1))
1978       return -1;
1979     if (undumpthings(font_ec[0], font_ptr + 1))
1980       return -1;
1981     if (undumpthings(char_base[0], font_ptr + 1))
1982       return -1;
1983     if (undumpthings(width_base[0], font_ptr + 1))
1984       return -1;
1985     if (undumpthings(height_base[0], font_ptr + 1))
1986       return -1;
1987     if (undumpthings(depth_base[0], font_ptr + 1))
1988       return -1;
1989     if (undumpthings(italic_base[0], font_ptr + 1))
1990       return -1;
1991     if (undumpthings(lig_kern_base[0], font_ptr + 1))
1992       return -1;
1993     if (undumpthings(kern_base[0], font_ptr + 1))
1994       return -1;
1995     if (undumpthings(exten_base[0], font_ptr + 1))
1996       return -1;
1997     if (undumpthings(param_base[0], font_ptr + 1))
1998       return -1;
1999     if (undumpthings(font_glue[0], font_ptr + 1))
2000       return -1;
2001     if (undumpthings(bchar_label[0], font_ptr + 1))
2002       return -1;
2003     if (undumpthings(font_bchar[0], font_ptr + 1))
2004       return -1;
2005     if (undumpthings(font_false_bchar[0], font_ptr + 1))
2006       return -1;
2007   }
2008
2009 /* log not opened yet, so can't show fonts frozen into format */
2010 /* May be able to avoid the following since we switched to */
2011 /* non_address from font_mem_size to 0 96/Jan/15 ??? */
2012
2013 #ifdef ALLOCATEFONT
2014 /* deal with fmt files dumped with *different* font_mem_size 93/Nov/29 */
2015  {
2016    int count = 0, oldfont_mem_size = 0;
2017
2018    for (x = 0; x <= font_ptr; x++)
2019    {
2020      if (bchar_label[x] > oldfont_mem_size)
2021        oldfont_mem_size = bchar_label[x];
2022    }
2023
2024 /* somewhat arbitrary sanity check ... */
2025 /* if (oldfont_mem_size != font_mem_size && oldfont_mem_size > font_max) { */
2026    if (oldfont_mem_size != non_address && oldfont_mem_size > font_max) /* 96/Jan/16 */
2027    {
2028      for (x = 0; x <= font_ptr; x++)
2029      {
2030        if (bchar_label[x] == oldfont_mem_size)
2031        {
2032          /* bchar_label[x] = font_mem_size; */
2033          bchar_label[x] = non_address;  /* 96/Jan/16 */
2034          count++;
2035        }
2036      }
2037      if (trace_flag)
2038      {
2039        sprintf(log_line, "oldfont_mem_size is %d --- hit %d times. Using non_address %d\n",
2040            oldfont_mem_size, count, non_address);
2041        show_line(log_line, 0);
2042      }
2043    }
2044  }
2045 #endif
2046 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
2047 /* undump(0)(hyph_size)(hyph_count); */
2048   {
2049     undump_int(x);
2050
2051     if ((x < 0) || (x > hyphen_prime))
2052       goto lab6666;
2053     else
2054       hyph_count = x;
2055   }
2056 /* undump hypenation exception tables p.1325 */
2057   for (k = 1; k <= hyph_count; k++)
2058   {
2059     {
2060       undump_int(x);
2061       if ((x < 0) || (x > hyphen_prime))
2062         goto lab6666;
2063       else
2064         j = x;
2065     }
2066     {
2067       undump_int(x);
2068       if ((x < 0) || (x > str_ptr))
2069         goto lab6666;
2070       else
2071         hyph_word[j] = x;
2072     }
2073     {
2074       undump_int(x);
2075       if ((x < 0) || (x > max_halfword)) /* mem_top ? no p.1325 */
2076         goto lab6666;
2077       else
2078         hyph_list[j] = x;
2079     }
2080   }
2081
2082 #ifdef ALLOCATEHYPHEN
2083 /* if user specified new hyphen prime - flush existing exception patterns ! */
2084 /* but, we can reclaim the string storage wasted ... */
2085   if (is_initex)
2086   {
2087     if (new_hyphen_prime != 0)
2088     {
2089       realloc_hyphen(new_hyphen_prime); /* reset_hyphen(); */
2090       hyphen_prime = new_hyphen_prime;
2091     }
2092   }
2093 #endif
2094
2095   {
2096     undump_int(x);
2097     if (x < 0)
2098       goto lab6666;
2099
2100 #ifdef ALLOCATETRIES
2101     if (!is_initex)
2102     {
2103       allocate_tries(x); /* allocate only as much as is needed */
2104 /* trie_size = x; */ /* ??? */
2105     }
2106 #endif
2107
2108     if (x > trie_size)
2109     {
2110       sprintf(log_line, "%s%s\n",  "---! Must increase the ", "trie size");
2111       show_line(log_line, 0);
2112       goto lab6666;
2113     }
2114     else
2115       j = x;
2116   }
2117 #ifdef INITEX
2118   if (is_initex) /* bkph */
2119     trie_max = j;
2120 #endif /* INITEX */
2121   if (undumpthings(trie_trl[0], j + 1))
2122     return -1;
2123   if (undumpthings(trie_tro[0], j + 1))
2124     return -1;
2125   if (undumpthings(trie_trc[0], j + 1))
2126     return -1;
2127   {
2128     undump_int(x);
2129     if (x < 0)
2130       goto lab6666;
2131     if (x > trie_op_size)
2132     {
2133       sprintf(log_line, "%s%s\n",  "---! Must increase the ", "trie op size");
2134       show_line(log_line, 0);
2135       goto lab6666;
2136     }
2137     else
2138       j = x;
2139   }
2140
2141 #ifdef INITEX
2142   if (is_initex)   /* bkph */
2143     trie_op_ptr = j;
2144 #endif /* INITEX */
2145   
2146   if (undumpthings(hyf_distance[1], j))
2147     return -1;
2148   if (undumpthings(hyf_num[1], j))
2149     return -1;
2150   if (undumpthings(hyf_next[1], j))
2151     return -1;
2152
2153 #ifdef INITEX
2154   if (is_initex)    /* bkph */
2155   {
2156     for (k = 0; k <= 255; k++)
2157     {
2158         trie_used[k] = 0;
2159     }
2160   }
2161 #endif /* INITEX */
2162   k = 256;
2163   while (j > 0) {
2164     {
2165       undump_int(x);
2166       if ((x < 0) || (x > k - 1))
2167         goto lab6666;
2168       else
2169         k = x;
2170     }
2171     {
2172       undump_int(x);
2173       if ((x < 1) || (x > j))
2174         goto lab6666;
2175       else
2176         x = x;
2177     }
2178 #ifdef INITEX
2179     if (is_initex)          /* bkph */
2180       trie_used[k] = x;
2181 #endif /* INITEX */
2182 /*   j:=j-x; op_start[k]:=qo(j); */
2183     j = j - x;
2184     op_start[k] = j;
2185   }
2186 #ifdef INITEX
2187   if (is_initex)          /* bkph */
2188     trie_not_ready = false;
2189 #endif /* INITEX */
2190   {
2191     undump_int(x);
2192     if ((x < batch_mode) || (x > error_stop_mode))
2193       goto lab6666;
2194 /*    else interaction = x;  */
2195     if (interaction < batch_mode)    /* may now set in local.c bkph 94/Jan/8 */
2196       interaction = x;
2197   }
2198   {
2199     undump_int(x);
2200     if ((x < 0) || (x > str_ptr))
2201       goto lab6666;
2202     else
2203       format_ident = x;
2204   }
2205   undump_int(x);
2206 /*  test_eof(fmt_file)? */
2207   
2208   if ((x != ENDFMTCHECKSUM) || feof(fmt_file)) /* magic checksum --- change ? */
2209     goto lab6666;
2210
2211   Result = true;
2212   return(Result);
2213
2214 lab6666:;
2215   sprintf(log_line, "(Fatal format file error; I'm stymied)\n");
2216   show_line(log_line, 1);
2217 /* added following bit of explanation 96/Jan/10 */
2218   if (!knuth_flag)
2219     bad_formator_pool(format_file, "the format file", "TEXFORMATS");
2220   Result = false;
2221   return Result;
2222 }
2223 /* sec 1335 */
2224 void final_cleanup (void)
2225 {
2226   small_number c;
2227
2228   c = cur_chr;
2229
2230   if (job_name == 0)
2231     open_log_file();
2232
2233   while (input_ptr > 0)
2234   {
2235     if (cur_input.state_field == 0)
2236     {
2237       end_token_list();
2238     }
2239     else
2240       end_file_reading();
2241   }
2242
2243   while (open_parens > 0)
2244   {
2245     print_string(" )");
2246     decr(open_parens);
2247   }
2248
2249   if (cur_level > level_one)
2250   {
2251     print_nl("(");
2252     print_esc("end occurred ");
2253     print_string("inside a group at level ");
2254     print_int(cur_level - 1);
2255     print_char(')');
2256   }
2257
2258   while (cond_ptr != 0)
2259   {
2260     print_nl("(");
2261     print_esc("end occurred ");
2262     print_string("when ");
2263     print_cmd_chr('i', cur_if);
2264
2265     if (if_line != 0)
2266     {
2267       print_string("on line ");
2268       print_int(if_line);
2269     }
2270
2271     print_string(" was incomplete)");
2272     if_line = mem[cond_ptr + 1].cint;
2273     cur_if = mem[cond_ptr].hh.b1;
2274     temp_ptr = cond_ptr;
2275     cond_ptr = mem[cond_ptr].hh.v.RH;
2276     free_node(temp_ptr, 2);
2277   }
2278
2279   if (history != spotless)
2280     if (((history == warning_issued) || (interaction < error_stop_mode)))
2281       if (selector == term_and_log)
2282       {
2283         selector = term_only;
2284         print_nl("(see the transcript file for additional information)");
2285         selector = term_and_log;
2286       }
2287
2288   if (c == 1)
2289   {
2290 #ifdef INITEX
2291     if (is_initex)
2292     {
2293       for (c = 0; c <= 4; c++)
2294       {
2295         if (cur_mark[c] != 0)
2296           delete_token_ref(cur_mark[c]);
2297       }
2298
2299       if (last_glue != max_halfword)
2300         delete_glue_ref(last_glue);
2301       store_fmt_file(); // returns a value ?
2302     }
2303 #endif /* INITEX */
2304     if (!is_initex)       /* 2000/March/3 */
2305       print_nl("(\\dump is performed only by INITEX)");
2306   }
2307 }
2308
2309 void show_frozen (void)
2310 {
2311   int i, j, n;
2312
2313   fprintf(log_file, "\n");
2314   fprintf(log_file, "(%d fonts frozen in format file:\n", font_ptr);
2315
2316   for (i = 1; i <= font_ptr; i++)
2317   {
2318     if (i > 1)
2319       fprintf(log_file, ", ");
2320
2321     if ((i % 8) == 0)
2322       fprintf(log_file, "\n");
2323
2324     n = str_start[font_name[i] + 1] - str_start[font_name[i]];
2325
2326     for (j = 0; j < n; j++)
2327     {
2328       putc(str_pool[str_start[font_name[i]] + j], log_file);
2329     }
2330   }
2331
2332   fprintf(log_file, ") ");
2333 }
2334
2335 /* Main entry point called from texmf.c int main(int ac, char *av[]) */
2336 /* call from main_program in texmf.c */
2337 /* This in turn calls initialize() */
2338
2339 #pragma warning(disable:4127)   // conditional expression is constant
2340
2341 int texbody (void)
2342 {
2343   history = 3;
2344
2345   //set_paths(TEXFORMATPATHBIT + TEXINPUTPATHBIT + TFMFILEPATHBIT);
2346
2347   if (ready_already == 314159L) /* magic number */
2348     goto lab1;
2349 /*  These tests are almost all compile time tests and so could be eliminated */
2350   bad = 0;
2351
2352   if ((half_error_line < 30) || (half_error_line > error_line - 15))
2353     bad = 1;
2354
2355   if (max_print_line < 60)
2356     bad = 2;
2357
2358   if (dvi_buf_size % 8 != 0)
2359     bad = 3;
2360
2361   if (1100 > mem_top)
2362     bad = 4;   /* not compile time */
2363
2364   if (hash_prime > (hash_size + hash_extra))
2365     bad = 5;
2366
2367   if (max_in_open >= 128)
2368     bad = 6;   /* p.14 */
2369
2370   if (mem_top < 267)
2371     bad = 7;    /* where from ? *//* not compile time */
2372
2373 #ifdef INITEX
2374   if (is_initex)
2375   {
2376     if ((mem_min != 0) || (mem_max != mem_top))
2377       bad = 10;
2378   }
2379 #endif
2380
2381   if ((mem_min > mem_bot) || (mem_max < mem_top))
2382     bad = 10;
2383
2384   if ((min_quarterword > 0) || (max_quarterword < 255))
2385     bad = 11;
2386
2387   if ((min_halfword > 0) || (max_halfword < 32767))
2388     bad = 12;
2389
2390   if ((min_quarterword < min_halfword) || (max_quarterword > max_halfword))
2391     bad = 13;
2392
2393   if ((mem_min < min_halfword) || (mem_max >= max_halfword) || (mem_bot - mem_min >= max_halfword))
2394     bad = 14;
2395 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
2396   if (mem_max > mem_top + mem_extra_high)     /* not compile time */
2397     bad = 14;       /* ha ha */
2398 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
2399 /*  if ((0 < 0)||(font_max > 255)) */
2400   if ((0 < min_quarterword) || (font_max > max_quarterword))  /* 93/Dec/3 */
2401     bad = 15;
2402 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
2403 #ifdef INCREASEFONTS
2404   if (font_max > 1024)                /* 96/Jan/17 */
2405 #else
2406   if (font_max > 256)
2407 #endif
2408     bad = 16;
2409
2410   if ((save_size > max_halfword) || (max_strings > max_halfword))
2411     bad = 17;
2412
2413   if (buf_size > max_halfword)
2414     bad = 18;
2415
2416   if (max_quarterword - min_quarterword < 255)
2417     bad = 19;
2418
2419   if (cs_token_flag + undefined_control_sequence > max_halfword)
2420     bad = 21;
2421
2422   if (format_default_length > PATHMAX)
2423     bad = 31;
2424 /*  if (2 * 262143L < mem_top - mem_min) */
2425   if (max_halfword < (mem_top - mem_min) / 2)
2426     bad = 41;
2427
2428   if (bad > 0)
2429   {
2430     sprintf(log_line, "%s%s%ld\n", "Ouch---my internal constants have been clobbered!",
2431         "---case ", (long) bad);
2432     show_line(log_line, 1);
2433
2434     if (!knuth_flag)
2435       bad_formator_pool(format_file, "the format file", "TEXFORMATS");  /* 96/Jan/17 */
2436
2437     goto lab9999;     // abort
2438   }
2439
2440   initialize();
2441
2442 #ifdef INITEX
2443   if (is_initex)
2444   {
2445     if (!get_strings_started())
2446       goto lab9999;   // abort
2447
2448     init_prim();
2449     init_str_ptr = str_ptr;
2450     init_pool_ptr = pool_ptr;
2451     fix_date_and_time();
2452   }
2453 #endif
2454
2455   ready_already = 314159L;      /* magic number */
2456
2457 lab1:
2458   selector = term_only;
2459   tally = 0;
2460   term_offset = 0;
2461   file_offset = 0;
2462   show_line(tex_version, 0);
2463 #ifdef _M_AMD64
2464   sprintf(log_line, " (%s %s/x64)", application, yandyversion);
2465 #else
2466   sprintf(log_line, " (%s %s/x86)", application, yandyversion);
2467 #endif
2468   show_line(log_line, 0);
2469
2470   if (format_ident > 0)
2471     slow_print(format_ident);
2472
2473   print_ln();
2474
2475 #ifndef _WINDOWS
2476   fflush(stdout);
2477 #endif
2478
2479   job_name = 0;
2480   name_in_progress = false;
2481   log_opened = false;
2482   output_file_name = 0;
2483
2484   {
2485     {
2486       input_ptr = 0;
2487       max_in_stack = 0;
2488       in_open = 0;
2489       high_in_open = 0; /* max_in_open name already used 1999 Jan 17 */
2490       open_parens = 0;
2491       max_open_parens = 0;  /* max_open_parens */
2492       max_buf_stack = 0;
2493       param_ptr = 0;
2494       max_param_stack = 0;
2495
2496 #ifdef ALLOCATEBUFFER
2497       memset (buffer, 0, current_buf_size);
2498 #else
2499       memset (buffer, 0, buf_size);
2500 #endif
2501
2502       first = 0;              /* 1999/Jan/22 */
2503       scanner_status = 0;
2504       warning_index = 0; /* warning_index:=null; l.7068 */
2505       first = 1;
2506       cur_input.state_field = 33;
2507       cur_input.start_field = 1;
2508       cur_input.index_field = 0;
2509       line = 0;
2510       cur_input.name_field = 0;
2511       force_eof = false;
2512       align_state = 1000000L;
2513
2514       if (!init_terminal())
2515         goto lab9999; // abort
2516
2517       cur_input.limit_field = last;
2518       first = last + 1;
2519     }
2520
2521 /*    For Windows NT, lets allow + instead of & for format specification */
2522     if ((format_ident == 0) ||
2523         (buffer[cur_input.loc_field] == '&') ||
2524         (buffer[cur_input.loc_field] == '+'))
2525     {
2526       if (format_ident != 0)
2527         initialize();
2528
2529       if (!open_fmt_file ())
2530         goto lab9999; // abort
2531
2532       if (!load_fmt_file ())
2533       {
2534         w_close(fmt_file);
2535         goto lab9999; // abort
2536       }
2537
2538       w_close(fmt_file);
2539
2540       while ((cur_input.loc_field < cur_input.limit_field) &&
2541           (buffer[cur_input.loc_field] == ' '))
2542         incr(cur_input.loc_field);
2543     }
2544
2545     if ((end_line_char < 0) || (end_line_char > 255))
2546       decr(cur_input.limit_field);
2547     else
2548       buffer[cur_input.limit_field] = end_line_char;
2549
2550     fix_date_and_time();
2551
2552     magic_offset = str_start[886] - 9 * ord_noad;  /* following: */
2553 /*  "0234000122*4000133**3**344*0400400*000000234000111*1111112341011" */
2554
2555     if (interaction == batch_mode)
2556       selector = no_print;
2557     else
2558       selector = term_only;
2559
2560     if ((cur_input.loc_field < cur_input.limit_field) &&
2561       (cat_code(buffer[cur_input.loc_field]) != escape))
2562       start_input();
2563   }
2564
2565 /*  show font TFMs frozen into format file */
2566 /*  moved here after start_input to ensure the log file is open */
2567   if (show_tfm_flag && log_opened && font_ptr > 0)    /* 98/Sep/28 */
2568     show_frozen();
2569
2570   main_time = clock();
2571   history = 0;
2572
2573   if (show_cs_names)
2574     print_cs_names(stdout, 0);    /* 98/Mar/31 */
2575
2576   main_control();     /* read-eval-print loop :-) in tex8.c */
2577
2578   if (show_cs_names)
2579     print_cs_names(stdout, 1);    /* 98/Mar/31 */
2580
2581   final_cleanup();
2582
2583   close_files_and_terminate();
2584
2585 lab9999:
2586   {
2587     int code;
2588
2589 #ifndef _WINDOWS
2590     fflush(stdout);
2591 #endif
2592
2593     ready_already = 0;
2594
2595     if ((history != 0) && (history != 1))
2596       code = 1;
2597     else
2598       code = 0;
2599
2600     return code;
2601   }
2602 }
2603
2604 #ifdef ALLOCATEMAIN
2605 /* add a block of variable size node space below mem_bot */
2606 /* used in tex0.c, local.c, itex.c */
2607 void add_variable_space(int size)
2608 {
2609   halfword p;
2610   halfword q;
2611   integer t;
2612
2613   if (mem_min == 0)
2614     t = mem_min;  /* bottom of present block */
2615   else
2616     t = mem_min + 1;
2617
2618   mem_min = t - (size + 1);     /* first word in new block - 1 */
2619
2620   if (mem_min < mem_start)      /* sanity test */
2621   {
2622     if (trace_flag)
2623       show_line("WARNING: mem_min < mem_start!\n", 0);
2624
2625     mem_min = mem_start;
2626   }
2627
2628   p = mem[rover + 1].hh.v.LH;
2629   q = mem_min + 1;
2630   mem[mem_min].hh.v.RH = 0; /* insert blank word below ??? */
2631   mem[mem_min].hh.v.LH = 0; /* insert blank word below ??? */
2632   mem[p + 1].hh.v.RH = q;
2633   mem[rover + 1].hh.v.LH = q;
2634   mem[q + 1].hh.v.RH = rover;
2635   mem[q + 1].hh.v.LH = p;
2636   mem[q].hh.v.RH = empty_flag;
2637   mem[q].hh.v.LH = t - q; /* block size */
2638   rover = q;
2639 }
2640 #endif
2641
2642 /**************************************************************************/
2643
2644 #ifdef INITEX
2645 /* split out to allow sharing of code from do_initex and newpattern */
2646 void reset_trie (void)
2647 {
2648   integer k;
2649
2650   for (k = - (integer) trie_op_size; k <= trie_op_size; k++)
2651     trie_op_hash[k] = 0;
2652
2653   for (k = 0; k <= 255; k++)
2654     trie_used[k] = min_trie_op;
2655
2656   max_op_used = min_trie_op;
2657   trie_op_ptr = 0;
2658   trie_not_ready = true;
2659   trie_l[0] = 0;
2660   trie_c[0] = 0;
2661   trie_ptr = 0;
2662   trie_not_ready = true;
2663 }
2664 /* borrowed code from initialize() */
2665 void reset_hyphen (void)
2666 {
2667   hyph_pointer z;
2668
2669   for (z = 0; z <= hyphen_prime; z++)
2670   {
2671     hyph_word[z] = 0;
2672     hyph_list[z] = 0; /* hyph_list[z]:=null; l.18131 */
2673   }
2674
2675   hyph_count = 0;
2676 }
2677 /* split out to allow optimize for space, not time */
2678 void do_initex (void)
2679 {
2680 /*  integer i; */
2681   integer k;
2682 /*  hyph_pointer z; */
2683
2684   for (k = mem_bot + 1; k <= lo_mem_stat_max; k++)
2685     mem[k].cint = 0;
2686
2687   k = mem_bot;
2688
2689   while (k <= lo_mem_stat_max)
2690   {
2691     glue_ref_count(k) = 1;
2692     stretch_order(k) = normal;
2693     shrink_order(k) = normal;
2694     k = k + glue_spec_size;
2695   }
2696
2697   stretch(fil_glue) = 65535L;
2698   stretch_order(fil_glue) = fil;
2699   stretch(fill_glue) = 65535L;
2700   stretch_order(fill_glue) = fill;
2701   stretch(ss_glue) = 65535L;
2702   stretch_order(ss_glue) = fil;
2703   shrink(ss_glue) = 65535L;
2704   shrink_order(ss_glue) = fil;
2705   stretch(fil_neg_glue) = -65536L;
2706   stretch_order(fil_neg_glue) = fil;
2707   rover = lo_mem_stat_max + 1;
2708   link(rover) = empty_flag;
2709   node_size(rover) = block_size;
2710   llink(rover) = rover;
2711   rlink(rover) = rover;
2712   lo_mem_max = rover + block_size;
2713   link(lo_mem_max) = 0;
2714   info(lo_mem_max) = 0;
2715
2716   for (k = hi_mem_stat_min; k <= mem_top; k++)
2717     mem[k] = mem[lo_mem_max];
2718
2719   info(omit_template) = end_template_token;
2720   link(end_span) = max_quarterword + 1;
2721   info(end_span) = 0;
2722   type(last_active) = hyphenated;
2723   line_number(last_active) = max_halfword;
2724   subtype(last_active) = 0;
2725   subtype(page_ins_head) = 255;
2726   type(page_ins_head) = split_up;
2727   link(mem_top) = page_ins_head;
2728   type(page_head) = glue_node;
2729   subtype(page_head) = normal;
2730   avail = 0;                   /* avail <- null p.164 */
2731   mem_end = mem_top;
2732   hi_mem_min = hi_mem_stat_min;
2733   var_used = lo_mem_stat_max + 1 - mem_bot;
2734   dyn_used = hi_mem_stat_usage;
2735   eq_type(undefined_control_sequence) = undefined_cs;
2736   equiv(undefined_control_sequence) = 0;
2737   eq_level(undefined_control_sequence) = level_zero;
2738
2739   for (k = active_base; k <= undefined_control_sequence - 1; k++)
2740     eqtb[k] = eqtb[undefined_control_sequence];
2741
2742   equiv(glue_base) = zero_glue;
2743   eq_level(glue_base) = level_one;
2744   eq_type(glue_base) = glue_ref;
2745
2746   for (k = glue_base + 1; k <= local_base - 1; k++)
2747     eqtb[k] = eqtb[glue_base];
2748
2749   glue_ref_count(zero_glue) = glue_ref_count(zero_glue) + local_base - glue_base;
2750
2751   par_shape_ptr = 0;
2752   eq_type(par_shape_loc) = shape_ref;
2753   eq_level(par_shape_loc) = level_one;
2754
2755   for (k = output_routine_loc; k <= toks_base + 255; k++)
2756     eqtb[k] = eqtb[undefined_control_sequence];
2757
2758   box(0) = 0;
2759   eq_type(box_base) = box_ref;
2760   eq_level(box_base) = level_one;
2761
2762   for (k = box_base + 1; k <= box_base + 255; k++)
2763     eqtb[k] = eqtb[box_base];
2764
2765   cur_font = null_font;
2766   eq_type(cur_font_loc) = data;
2767   eq_level(cur_font_loc) = level_one;
2768
2769   for (k = math_font_base; k <= math_font_base + 47; k++)
2770     eqtb[k] = eqtb[cur_font_loc];
2771
2772   equiv(cat_code_base) = 0;
2773   eq_type(cat_code_base) = data;
2774   eq_level(cat_code_base) = level_one;
2775
2776   for (k = cat_code_base; k <= int_base - 1; k++)
2777     eqtb[k] = eqtb[cat_code_base];
2778
2779   for (k = 0; k <= 255; k++)
2780   {
2781     cat_code(k) = other_char;
2782     math_code(k) = k;
2783     sf_code(k) = 1000;
2784   }
2785
2786   cat_code(carriage_return) = car_ret;
2787   cat_code(' ') = spacer;
2788   cat_code('\\') = escape;
2789   cat_code('%') = comment;
2790   cat_code(invalid_code) = invalid_char;
2791   cat_code(null_code) = ignore;
2792
2793   for (k = '0'; k <= '9'; k++)
2794     math_code(k) = k + var_code;
2795
2796   for (k = 'A'; k <= 'Z'; k++)
2797   {
2798     cat_code(k) = letter;
2799     cat_code(k + 'a' - 'A') = letter;
2800     math_code(k) = k + var_code + 0x100;
2801     math_code(k + 'a' - 'A') = k + 'a' - 'A' + var_code + 0x100;
2802     lc_code(k) = k + 'a' - 'A';
2803     lc_code(k + 'a' - 'A') = k + 'a' - 'A';
2804     uc_code(k) = k;
2805     uc_code(k + 'a' - 'A') = k;
2806     sf_code(k) = 999;
2807   }
2808
2809   for (k = int_base; k <= del_code_base - 1; k++)
2810     eqtb[k].cint = 0;
2811
2812   mag = 1000;
2813   tolerance = 10000;
2814   hang_after = 1;
2815   max_dead_cycles = 25;
2816   escape_char = '\\';
2817   end_line_char = carriage_return;
2818
2819   for (k = 0; k <= 255; k++)
2820     del_code(k) = -1;
2821
2822   del_code('.') = 0;
2823
2824   for (k = dimen_base; k <= eqtb_size; k++)
2825     eqtb[k].cint = 0;
2826
2827   hash_used = frozen_control_sequence;
2828   cs_count = 0;
2829
2830   if (trace_flag)
2831     show_line("initex cs_count = 0 ", 0);
2832
2833   eq_type(frozen_dont_expand) = dont_expand;
2834   text(frozen_dont_expand) = 499;  /* notexpanded */
2835
2836   font_ptr                    = null_font;
2837   fmem_ptr                    = 7;
2838   font_name[null_font]        = 795; /* nullfont */
2839   font_area[null_font]        = 335; /* "" */
2840   hyphen_char[null_font]      = '-';
2841   skew_char[null_font]        = -1; 
2842   bchar_label[null_font]      = non_address;
2843   font_bchar[null_font]       = non_char;
2844   font_false_bchar[null_font] = non_char;
2845   font_bc[null_font]          = 1;
2846   font_ec[null_font]          = 0;
2847   font_size[null_font]        = 0;
2848   font_dsize[null_font]       = 0;
2849   char_base[null_font]        = 0;
2850   width_base[null_font]       = 0;
2851   height_base[null_font]      = 0;
2852   depth_base[null_font]       = 0;
2853   italic_base[null_font]      = 0;
2854   lig_kern_base[null_font]    = 0;
2855   kern_base[null_font]        = 0;
2856   exten_base[null_font]       = 0;
2857   font_glue[null_font]        = 0;
2858   font_params[null_font]      = 7;
2859   param_base[null_font]       = -1;
2860 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***  */
2861   reset_trie();         /* shared 93/Nov/26 */
2862 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***  */
2863
2864   text(frozen_protection) = 1184; /* "inaccessible" */
2865   format_ident = 1251;
2866   text(end_write) = 1290;
2867   eq_level(end_write) = level_one;
2868   eq_type(end_write) = outer_call;
2869   equiv(end_write) = 0;
2870 }
2871 #endif /* INITEX */
2872
2873 #ifdef INITEX
2874 /* sec 0047 */
2875 bool get_strings_started (void)
2876 {
2877   integer k, l;
2878   str_number g;
2879
2880   pool_ptr = 0;
2881   str_ptr = 0;
2882   str_start[0] = 0;
2883
2884   for (k = 0; k <= 255; k++)
2885   {
2886     if (((k < ' ') || (k > '~')))
2887     {
2888       append_char('^');
2889       append_char('^');
2890
2891       if (k < 64)
2892         append_char(k + 64);
2893       else
2894         if (k < 128)
2895           append_char(k - 64);
2896         else
2897         {
2898           append_lc_hex(k / 16);
2899           append_lc_hex(k % 16);
2900         }
2901     }
2902     else
2903       append_char(k);
2904
2905     g = make_string();
2906   }
2907
2908   g = load_pool_strings(pool_size - string_vacancies);
2909
2910   if (g == 0)
2911   {
2912     fprintf(stdout , "%s\n",  "! You have to increase POOLSIZE." );
2913     return false;
2914   }
2915
2916   return true;
2917 }
2918 #endif /* INITEX */
2919
2920 #ifdef INITEX
2921 /* sec 0131 */
2922 void sort_avail (void)
2923 {
2924   halfword p, q, r;
2925   halfword old_rover;
2926
2927   p = get_node(1073741824L); /* 2^30 merge adjacent free nodes */
2928   p = rlink(rover);
2929   rlink(rover) = empty_flag;
2930   old_rover = rover;
2931
2932   while (p != old_rover)
2933   {
2934     if (p < rover)
2935     {
2936       q = p;
2937       p = rlink(q);
2938       rlink(q) = rover;
2939       rover = q;
2940     }
2941     else
2942     {
2943       q = rover;
2944
2945       while (rlink(q) < p)
2946         q = rlink(q);
2947
2948       r = rlink(p);
2949       rlink(p) = rlink(q);
2950       rlink(q) = p;
2951       p = r;
2952     }
2953   }
2954
2955   p = rover;
2956
2957   while (rlink(p) != empty_flag)
2958   {
2959     llink(rlink(p)) = p;
2960     p = rlink(p);
2961   }
2962
2963   rlink(p) = rover;
2964   llink(rover) = p;
2965 }
2966 #endif /* INITEX */
2967
2968 #ifdef INITEX
2969 str_number make_string_pool (char *s)
2970 {
2971   int slen = strlen(s);
2972
2973   if (slen == 1)
2974   {
2975     return ((str_number)s[0]);
2976   }
2977   else
2978   {
2979     memcpy(str_pool + pool_ptr, s, slen);
2980     pool_ptr += slen;
2981     return (make_string());
2982   }
2983 }
2984 /* sec 0264 */
2985 void primitive_ (str_number s, quarterword c, halfword o)
2986
2987   pool_pointer k;
2988   small_number j;
2989 /*  small_number l;  */
2990   int l; /* 95/Jan/7 */
2991
2992   if (s < 256)
2993     cur_val = s + single_base;
2994   else
2995   {
2996     k = str_start[s];
2997     l = str_start[s + 1] - k; /* small_number l */
2998
2999     for (j = 0; j <= l - 1; j++)
3000       buffer[j] = str_pool[k + j];
3001
3002     cur_val = id_lookup(0, l);
3003     flush_string();
3004
3005 #ifdef SHORTHASH
3006     if (s > 65535L)
3007       show_line("ERROR: hash entry too large\n", 1);
3008 #endif
3009
3010     text(cur_val) = s;
3011   }
3012
3013   eq_level(cur_val) = level_one;
3014   eq_type(cur_val) = c;
3015   equiv(cur_val) = o;
3016 }
3017 #endif /* INITEX */
3018
3019 /* more weird constants ? page 394 */
3020
3021 #ifdef INITEX
3022 /* sec 0944 */
3023 trie_op_code new_trie_op_ (small_number d, small_number n, trie_op_code v)
3024 {
3025   integer h;
3026   trie_op_code u;
3027   integer l;
3028
3029   h = abs(n + 313 * d + 361 * v + 1009 * cur_lang) % (trie_op_size + trie_op_size) + neg_trie_op_size;
3030
3031   while (true)
3032   {
3033     l = trie_op_hash[h];
3034
3035     if (l == 0)
3036     {
3037       if (trie_op_ptr == trie_op_size)
3038       {
3039         overflow("pattern memory ops", trie_op_size);
3040         return 0;     // abort_flag set
3041       }
3042
3043       u = trie_used[cur_lang];
3044
3045       if (u == max_trie_op)
3046       {
3047         overflow("pattern memory ops per language", max_trie_op - min_trie_op);
3048         return 0;     // abort_flag set
3049       }
3050
3051       incr(trie_op_ptr);
3052       incr(u);
3053       trie_used[cur_lang] = u;
3054
3055       if (u > max_op_used)
3056         max_op_used = u;
3057
3058       hyf_distance[trie_op_ptr] = d;
3059       hyf_num[trie_op_ptr] = n;
3060       hyf_next[trie_op_ptr] = v;
3061       trie_op_lang[trie_op_ptr] = cur_lang;
3062       trie_op_hash[h] = trie_op_ptr;
3063       trie_op_val[trie_op_ptr] = u;
3064       return u;
3065     }
3066
3067     if ((hyf_distance[l]== d) && (hyf_num[l]== n) && (hyf_next[l]== v) && (trie_op_lang[l]== cur_lang))
3068     {
3069       return trie_op_val[l];
3070     }
3071
3072     if (h > - (integer) trie_op_size)
3073       decr(h);
3074     else
3075       h = trie_op_size;
3076   }
3077 }
3078 /* sec 0948 */
3079 trie_pointer trie_node_ (trie_pointer p)
3080 {
3081   trie_pointer h;
3082   trie_pointer q;
3083
3084   /* the 1009, 2718, 3142 are hard-wired constants here (not hyphen_prime) */
3085   /* compute hash value */
3086   h = abs(trie_c[p] + 1009 * trie_o[p] + 2718 * trie_l[p] + 3142 * trie_r[p]) % trie_size;
3087
3088   while (true)
3089   {
3090     q = trie_hash[h];
3091
3092     if (q == 0)
3093     {
3094       trie_hash[h] = p;
3095       return p;
3096     }
3097
3098     if ((trie_c[q] == trie_c[p]) && (trie_o[q] == trie_o[p]) &&
3099       (trie_l[q] == trie_l[p]) && (trie_r[q] == trie_r[p]))
3100     {
3101       return q;
3102     }
3103
3104     if (h > 0)
3105       decr(h);
3106     else
3107       h = trie_size;
3108   }
3109 }
3110 /* sec 0949 */
3111 trie_pointer compress_trie_ (trie_pointer p)
3112 {
3113   if (p == 0)
3114     return 0;
3115   else
3116   {
3117     trie_l[p] = compress_trie(trie_l[p]);
3118     trie_r[p] = compress_trie(trie_r[p]);
3119     return trie_node(p);
3120   }
3121 }
3122 /* sec 0953 */
3123 void first_fit_ (trie_pointer p)
3124 {
3125   trie_pointer h;
3126   trie_pointer z;
3127   trie_pointer q;
3128   ASCII_code c;
3129   trie_pointer l, r;
3130   short ll;
3131
3132   c = trie_c[p];
3133   z = trie_min[c];
3134
3135   while (true)
3136   {
3137     h = z - c;
3138
3139     if (trie_max < h + 256)
3140     {
3141       if (trie_size <= h + 256)
3142       {
3143         /* pattern memory - NOT DYNAMIC */
3144         overflow("pattern memory", trie_size);
3145 /*      not dynamic ---- but can be set -h=... from command line in ini-TeX */
3146         return;     // abort_flag set
3147       }
3148
3149       do
3150         {
3151           incr(trie_max);
3152           trie_taken[trie_max] = false;
3153           trie_trl[trie_max] = trie_max + 1;
3154           trie_tro[trie_max] = trie_max - 1;
3155         }
3156       while (!(trie_max == h + 256));
3157     }
3158
3159     if (trie_taken[h])
3160       goto lab45;
3161
3162     q = trie_r[p];
3163
3164     while (q > 0)
3165     {
3166       if (trie_trl[h + trie_c[q]] == 0)
3167         goto lab45;
3168
3169       q = trie_r[q];
3170     }
3171
3172     goto lab40;
3173 lab45:
3174     z = trie_trl[z];
3175   }
3176 lab40:
3177   trie_taken[h] = true; /* h may be used without ... */
3178   trie_hash[p] = h;
3179   q = p;
3180
3181   do {
3182     z = h + trie_c[q];
3183     l = trie_tro[z];
3184     r = trie_trl[z];
3185     trie_tro[r] = l;
3186     trie_trl[l] = r;
3187     trie_trl[z] = 0;
3188
3189     if (l < 256)
3190     {
3191       if (z < 256)
3192         ll = z;         /* short ll */
3193       else
3194         ll = 256;
3195
3196       do {
3197         trie_min[l] = r;
3198         incr(l);
3199       } while (!(l == ll));
3200     }
3201     q = trie_r[q];
3202   } while (!(q == 0));
3203 }
3204 /* sec 0957 */
3205 void trie_pack_ (trie_pointer p)
3206 {
3207   trie_pointer q;
3208
3209   do
3210     {
3211       q = trie_l[p];
3212
3213       if ((q > 0) && (trie_hash[q]== 0))
3214       {
3215         first_fit(q);
3216         trie_pack(q);
3217       }
3218
3219       p = trie_r[p];
3220     }
3221   while(!(p == 0));
3222 }
3223 /* sec 0959 */
3224 void trie_fix_ (trie_pointer p)
3225 {
3226   trie_pointer q;
3227   ASCII_code c;
3228   trie_pointer z;
3229
3230   z = trie_hash[p];
3231
3232   do
3233     {
3234       q = trie_l[p];
3235       c = trie_c[p];
3236       trie_trl[z + c] = trie_hash[q];
3237       trie_trc[z + c] = c;
3238       trie_tro[z + c] = trie_o[p];
3239
3240       if (q > 0)
3241         trie_fix(q);
3242
3243       p = trie_r[p];
3244     }
3245   while(!(p == 0));
3246 }
3247 /* sec 0960 */
3248 void new_patterns (void)
3249 {
3250 /* ******************************************************************* */
3251 /*  was small_number k, l;  in 3.141 */
3252   char k, l;
3253 /* ******************************************************************* */
3254   bool digitsensed;
3255   trie_op_code v;
3256   trie_pointer p, q;
3257   bool firstchild;
3258 /*  ASCII_code c;  */
3259   int c;                /* 95/Jan/7 */
3260
3261   if (!trie_not_ready) /* new stuff */
3262   {
3263     if (allow_patterns)
3264     {
3265       if (trace_flag)
3266         show_line("Resetting patterns\n", 0);
3267
3268       reset_trie();         /* RESET PATTERNS -  93/Nov/26 */
3269
3270       if (reset_exceptions)
3271       {
3272         if (trace_flag)
3273           show_line("Resetting exceptions\n", 0);
3274
3275         reset_hyphen();     /* RESET HYPHENEXCEPTIONS -  93/Nov/26 */
3276       }
3277     }
3278   }
3279 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
3280   if (trie_not_ready)
3281   {
3282     set_cur_lang();
3283     scan_left_brace();
3284     k = 0;
3285     hyf[0] = 0;
3286     digitsensed = false;
3287
3288     while (true)
3289     {
3290       get_x_token();
3291
3292       switch (cur_cmd)
3293       {
3294         case letter:
3295         case other_char:
3296           if (digitsensed || (cur_chr < '0') || (cur_chr > '9'))
3297           {
3298             if (cur_chr == '.')
3299               cur_chr = 0;
3300             else
3301             {
3302               cur_chr = lc_code(cur_chr);
3303
3304               if (cur_chr == 0)
3305               {
3306                 print_err("Nonletter");
3307                 help1("(See Appendix H.)");
3308                 error();
3309               }
3310             }
3311
3312             if (k < 63)
3313             {
3314               incr(k);
3315               hc[k] = cur_chr;
3316               hyf[k] = 0;
3317               digitsensed = false;
3318             }
3319           }
3320           else if (k < 63)
3321           {
3322             hyf[k] = cur_chr - '0';
3323             digitsensed = true;
3324           }
3325           break;
3326         case spacer:
3327         case right_brace:
3328           {
3329             if (k > 0)
3330             {
3331               if (hc[1] == 0)
3332                 hyf[0] = 0;
3333
3334               if (hc[k] == 0)
3335                 hyf[k] = 0;
3336
3337               l = k;
3338               v = min_trie_op;
3339
3340               while (true) {
3341                 if (hyf[l]!= 0)
3342                   v = new_trie_op(k - l, hyf[l], v);
3343
3344                 if (l > 0)
3345                   decr(l);
3346                 else
3347                   goto lab31;
3348               }
3349 lab31:
3350               q = 0;
3351               hc[0] = cur_lang;
3352
3353               while (l <= k) {
3354                 c = hc[l];
3355                 incr(l);
3356                 p = trie_l[q];
3357                 firstchild = true;
3358
3359                 while ((p > 0) && (c > trie_c[p])) {
3360                   q = p;
3361                   p = trie_r[q];
3362                   firstchild = false;
3363                 }
3364
3365                 if ((p == 0) || (c < trie_c[p]))
3366                 {
3367                   if (trie_ptr == trie_size)
3368                   {
3369                     overflow("pattern memory", trie_size);  /* pattern memory - NOT DYNAMIC */
3370 /*      not dynamic ---- but can be set -h=... from command line in ini-TeX */
3371                     return;     // abort_flag set
3372                   }
3373
3374                   incr(trie_ptr);
3375                   trie_r[trie_ptr] = p;
3376                   p = trie_ptr;
3377                   trie_l[p] = 0;
3378
3379                   if (firstchild)
3380                     trie_l[q]= p;
3381                   else
3382                     trie_r[q]= p;
3383
3384                   trie_c[p] = c;
3385                   trie_o[p] = min_trie_op;
3386                 }
3387                 q = p;
3388               }
3389
3390               if (trie_o[q]!= min_trie_op)
3391               {
3392                 print_err("Duplicate pattern");
3393                 help1("(See Appendix H.)");
3394                 error();
3395               }
3396
3397               trie_o[q]= v;
3398             }
3399
3400             if (cur_cmd == right_brace)
3401               goto lab30;
3402
3403             k = 0;
3404             hyf[0] = 0;
3405             digitsensed = false;
3406           }
3407           break;
3408         default:
3409           {
3410             print_err("Bad ");
3411             print_esc("patterns");
3412             help1("(See Appendix H.)");
3413             error();
3414           }
3415           break;
3416       }
3417     }
3418 lab30:;
3419   }
3420   else
3421   {
3422     print_err("Too late for ");
3423     print_esc("patterns");
3424     help1("All patterns must be given before typesetting begins.");
3425     error();
3426     link(garbage) = scan_toks(false, false);
3427     flush_list(def_ref);
3428   }
3429 }
3430 /* sec 0966 */
3431 void init_trie (void)
3432 {
3433   trie_pointer p;
3434 /*  integer j, k, t;  */
3435   integer j, k;
3436   int t;                  /* 95/Jan/7 */
3437   trie_pointer r, s;
3438
3439   op_start[0] = - (integer) min_trie_op;
3440
3441   for (j = 1; j <= 255; j++)
3442   {
3443     op_start[j] = op_start[j - 1] + trie_used[j - 1];
3444   }
3445
3446   for (j = 1; j <= trie_op_ptr; j++)
3447   {
3448     trie_op_hash[j] = op_start[trie_op_lang[j]] + trie_op_val[j];
3449   }
3450
3451   for (j = 1; j <= trie_op_ptr; j++)
3452   {
3453     while (trie_op_hash[j] > j)
3454     {
3455       k = trie_op_hash[j];
3456       t = hyf_distance[k];
3457       hyf_distance[k] = hyf_distance[j];
3458       hyf_distance[j] = t;
3459       t = hyf_num[k];
3460       hyf_num[k] = hyf_num[j];
3461       hyf_num[j] = t;
3462       t = hyf_next[k];
3463       hyf_next[k] = hyf_next[j];
3464       hyf_next[j]= t;
3465       trie_op_hash[j] = trie_op_hash[k];
3466       trie_op_hash[k] = k;
3467     }
3468   }
3469
3470   for (p = 0; p <= trie_size; p++)
3471   {
3472     trie_hash[p] = 0;
3473   }
3474
3475   trie_l[0] = compress_trie(trie_l[0]);
3476
3477   for (p = 0; p <= trie_ptr; p++)
3478   {
3479     trie_hash[p]= 0;
3480   }
3481
3482   for (p = 0; p <= 255; p++)
3483   {
3484     trie_min[p] = p + 1;
3485   }
3486
3487   trie_trl[0] = 1;
3488   trie_max = 0;
3489
3490   if (trie_l[0] != 0)
3491   {
3492     first_fit(trie_l[0]);
3493     trie_pack(trie_l[0]);
3494   }
3495
3496   if (trie_l[0] == 0)
3497   {
3498     for (r = 0; r <= 256; r++)
3499     {
3500       trie_trl[r] = 0;
3501       trie_tro[r] = min_trie_op;
3502       trie_trc[r] = 0;
3503     }
3504     trie_max = 256;
3505   }
3506   else
3507   {
3508     trie_fix(trie_l[0]);
3509     r = 0;
3510
3511     do
3512       {
3513         s = trie_trl[r];
3514         {
3515           trie_trl[r] = 0;
3516           trie_tro[r] = min_trie_op;
3517           trie_trc[r] = 0;
3518         }
3519
3520         r = s;
3521       }
3522     while(!(r > trie_max));
3523   }
3524   trie_trc[0] = 63;
3525   trie_not_ready = false;
3526 }
3527 #endif /* INITEX */
3528
3529 #ifdef INITEX
3530 /* sec 1302 */
3531 void store_fmt_file (void)
3532 {
3533   integer j, k, l;
3534   halfword p, q;
3535   integer x;
3536
3537   if (!is_initex)   /* redundant check 94/Feb/14 */
3538   {
3539     show_line("! \\dump is performed only by INITEX\n", 1);
3540
3541     if (! knuth_flag)
3542       show_line("  (Use -i on the command line)\n", 0);
3543
3544     abort_flag++;
3545     return;
3546   }
3547
3548   if (save_ptr != 0)
3549   {
3550     print_err("You can't dump inside a group");
3551     help1("`{...\\dump}' is a no-no.");
3552     succumb();
3553   }
3554
3555   selector = new_string;
3556   print_string(" (format=");
3557   print(job_name);
3558   print_char(' ');
3559   print_int(year);
3560   print_char('.');
3561   print_int(month);
3562   print_char('.');
3563   print_int(day);
3564   print_char(')');
3565
3566   if (interaction == 0)
3567     selector = log_only;
3568   else
3569     selector = term_and_log;
3570
3571   str_room(1);
3572   format_ident = make_string();
3573   pack_job_name(".fmt");
3574
3575   while(!w_open_out(fmt_file))
3576   {
3577     prompt_file_name("format file name", ".fmt");
3578   }
3579
3580   print_nl("Beginning to dump on file ");
3581   slow_print(w_make_name_string(fmt_file));
3582   flush_string();
3583   print_nl("");
3584   slow_print(format_ident);
3585
3586   dump_int(BEGINFMTCHECKSUM); /* magic FMT file start 4C 20 E6 15 hex */
3587
3588   dump_int(mem_bot);
3589   dump_int(mem_top);
3590   dump_int(eqtb_size);
3591   dump_int(hash_prime);
3592   dump_int(hyphen_prime);   /* bkph */
3593
3594   dump_int(pool_ptr);
3595   dump_int(str_ptr);
3596
3597   if (dumpthings(str_start[0], str_ptr + 1))
3598     return;
3599
3600   if (dumpthings(str_pool[0], pool_ptr))
3601     return;
3602
3603   print_ln();
3604   print_int(str_ptr);
3605   print_string(" strings of total length ");
3606   print_int(pool_ptr);
3607
3608   sort_avail();
3609   var_used = 0;
3610   dump_int(lo_mem_max);
3611   dump_int(rover);
3612   p = 0;
3613   q = rover;
3614   x = 0;
3615
3616   do
3617     {
3618       if (dumpthings(mem[p], q + 2 - p))
3619         return;
3620
3621       x = x + q + 2 - p;
3622       var_used = var_used + q - p;
3623       p = q + mem[q].hh.v.LH;
3624       q = mem[q + 1].hh.v.RH;
3625     }
3626   while (!(q == rover));
3627
3628   var_used = var_used + lo_mem_max - p;
3629   dyn_used = mem_end + 1 - hi_mem_min;
3630
3631   if (dumpthings(mem[p], lo_mem_max + 1 - p))
3632     return;
3633
3634   x = x + lo_mem_max + 1 - p;
3635   dump_int(hi_mem_min);
3636   dump_int(avail);
3637
3638   if (dumpthings(mem[hi_mem_min], mem_end + 1 - hi_mem_min))
3639     return;
3640
3641   x = x + mem_end + 1 - hi_mem_min;
3642   p = avail;
3643
3644   while (p != 0)
3645   {
3646     decr(dyn_used);
3647     p = mem[p].hh.v.RH;
3648   }
3649
3650   dump_int(var_used);
3651   dump_int(dyn_used);
3652   print_ln();
3653   print_int(x);
3654   print_string(" memory locations dumped; current usage is ");
3655   print_int(var_used);
3656   print_char('&');
3657   print_int(dyn_used);
3658
3659   k = active_base;
3660   do
3661     {
3662       j = k;
3663
3664       while (j < (int_base - 1))
3665       {
3666         if ((equiv(j) == equiv(j + 1)) &&
3667           (eq_type(j) == eq_type(j + 1)) &&
3668           (eq_level(j) == eq_level(j + 1)))
3669           goto lab41;
3670         incr(j);
3671       }
3672
3673       l = (int_base);
3674       goto lab31;
3675 lab41:
3676       incr(j);
3677       l = j;
3678       while (j < (int_base - 1))
3679       {
3680         if ((equiv(j) != equiv(j + 1)) ||
3681           (eq_type(j) != eq_type(j + 1)) ||
3682           (eq_level(j) != eq_level(j + 1)))
3683           goto lab31;
3684         incr(j);
3685       }
3686 lab31:
3687       dump_int(l - k);
3688
3689       if (dumpthings(eqtb[k], l - k))
3690         return;
3691
3692       k = j + 1;
3693       dump_int(k - l);
3694     }
3695   while (!(k == (int_base)));
3696
3697   do {
3698     j = k;
3699     while (j < (eqtb_size)) {
3700       if (eqtb[j].cint == eqtb[j + 1].cint)
3701         goto lab42;
3702       incr(j);
3703     }
3704     l = (eqtb_size + 1);
3705     goto lab32;
3706 lab42:
3707     incr(j);
3708     l = j;
3709     while (j < (eqtb_size)) {
3710       if (eqtb[j].cint != eqtb[j + 1].cint)
3711         goto lab32;
3712       incr(j);
3713     }
3714 lab32:
3715     dump_int(l - k);
3716     if (dumpthings(eqtb[k], l - k))
3717       return;
3718     k = j + 1;
3719     dump_int(k - l);
3720   } while (!(k > (eqtb_size)));
3721
3722   dump_int(par_loc);
3723   dump_int(write_loc);
3724
3725   dump_int(hash_used);
3726   cs_count = frozen_control_sequence - 1 - hash_used;
3727
3728   if (trace_flag)
3729   {
3730     sprintf(log_line, "itex cs_count %d hash_size %d hash_extra %d hash_used %d",
3731         cs_count, hash_size, hash_extra, hash_used);
3732     show_line(log_line, 0);
3733   }
3734
3735   for (p = hash_base; p <= hash_used; p++)
3736   {
3737     if (hash[p].v.RH != 0)
3738     {
3739       dump_int(p);
3740       dump_hh(hash[p]);
3741       incr(cs_count);
3742
3743       if (trace_flag)
3744       {
3745         sprintf(log_line, "itex cs_count++ ");
3746         show_line(log_line, 0); /* debugging */
3747       }
3748
3749     }
3750   }
3751 /*  ??? */
3752 /* for p <- hash_used+1 to undefined_control_sequence-1 do dump_hh(hash[p]) */
3753   if (dumpthings(hash[hash_used + 1], (hash_size + 780) - hash_used))
3754     return;
3755
3756   dump_int(cs_count);
3757   print_ln();
3758   print_int(cs_count);
3759   print_string(" multiletter control sequences");
3760
3761   dump_int(fmem_ptr);
3762   {
3763     if (dumpthings(font_info[0], fmem_ptr))
3764       return;
3765
3766     dump_int(font_ptr);
3767
3768     if (dumpthings(font_check[0], font_ptr + 1))
3769       return;
3770
3771     if (dumpthings(font_size[0], font_ptr + 1))
3772       return;
3773
3774     if (dumpthings(font_dsize[0], font_ptr + 1))
3775       return;
3776
3777     if (dumpthings(font_params[0], font_ptr + 1))
3778       return;
3779
3780     if (dumpthings(hyphen_char[0], font_ptr + 1))
3781       return;
3782
3783     if (dumpthings(skew_char[0], font_ptr + 1))
3784       return;
3785
3786     if (dumpthings(font_name[0], font_ptr + 1))
3787       return;
3788
3789     if (dumpthings(font_area[0], font_ptr + 1))
3790       return;
3791
3792     if (dumpthings(font_bc[0], font_ptr + 1))
3793       return;
3794
3795     if (dumpthings(font_ec[0], font_ptr + 1))
3796       return;
3797
3798     if (dumpthings(char_base[0], font_ptr + 1))
3799       return;
3800
3801     if (dumpthings(width_base[0], font_ptr + 1))
3802       return;
3803
3804     if (dumpthings(height_base[0], font_ptr + 1))
3805       return;
3806
3807     if (dumpthings(depth_base[0], font_ptr + 1))
3808       return;
3809
3810     if (dumpthings(italic_base[0], font_ptr + 1))
3811       return;
3812
3813     if (dumpthings(lig_kern_base[0], font_ptr + 1))
3814       return;
3815
3816     if (dumpthings(kern_base[0], font_ptr + 1))
3817       return;
3818
3819     if (dumpthings(exten_base[0], font_ptr + 1))
3820       return;
3821
3822     if (dumpthings(param_base[0], font_ptr + 1))
3823       return;
3824
3825     if (dumpthings(font_glue[0], font_ptr + 1))
3826       return;
3827
3828     if (dumpthings(bchar_label[0], font_ptr + 1))
3829       return;
3830
3831     if (dumpthings(font_bchar[0], font_ptr + 1))
3832       return;
3833
3834     if (dumpthings(font_false_bchar[0], font_ptr + 1))
3835       return;
3836
3837     for (k = 0; k <= font_ptr; k++)
3838     {
3839       print_nl("\\font");
3840 /*  print_esc(hash[(hash_size + 524) + k].v.RH);  */
3841 /*  print_esc(hash[(hash_size + hash_extra + 524) + k].v.RH); */
3842       print_esc("");print(hash[(hash_size + hash_extra + 524) + k].v.RH);
3843       print_char('=');
3844       print_file_name(font_name[k], font_area[k], 335);
3845
3846       if (font_size[k] != font_dsize[k])
3847       {
3848         print_string(" at ");
3849         print_scaled(font_size[k]);
3850         print_string("pt");
3851       }
3852     }
3853   }
3854
3855   print_ln();
3856   print_int(fmem_ptr - 7);
3857   print_string(" words of font info for ");
3858   print_int(font_ptr - 0);
3859   print_string(" preloaded font");
3860
3861   if (font_ptr != 1)
3862     print_char('s');
3863
3864   dump_int(hyph_count);
3865
3866   for (k = 0; k <= hyphen_prime; k++)
3867   {
3868     if (hyph_word[k]!= 0)
3869     {
3870       dump_int(k);
3871       dump_int(hyph_word[k]);
3872       dump_int(hyph_list[k]);
3873     }
3874   }
3875
3876   print_ln();
3877   print_int(hyph_count);
3878   print_string(" hyphenation exception");
3879
3880   if (hyph_count != 1)
3881     print_char('s');
3882
3883   if (trie_not_ready)
3884     init_trie();
3885
3886   dump_int(trie_max);
3887
3888   if (dumpthings(trie_trl[0], trie_max + 1))
3889     return;
3890
3891   if (dumpthings(trie_tro[0], trie_max + 1))
3892     return;
3893
3894   if (dumpthings(trie_trc[0], trie_max + 1))
3895     return;
3896
3897   dump_int(trie_op_ptr);
3898
3899   if (dumpthings(hyf_distance[1], trie_op_ptr))
3900     return;
3901
3902   if (dumpthings(hyf_num[1], trie_op_ptr))
3903     return;
3904
3905   if (dumpthings(hyf_next[1], trie_op_ptr))
3906     return;
3907
3908   print_nl("Hyphenation trie of length ");
3909   print_int(trie_max);
3910   print_string(" has ");
3911   print_int(trie_op_ptr);
3912   print_string(" op");
3913
3914   if (trie_op_ptr != 1)
3915     print_char('s');
3916
3917   print_string(" out of ");
3918   print_int(trie_op_size);
3919
3920   for (k = 255; k >= 0; k--)
3921   {
3922     if (trie_used[k] > 0)
3923     {
3924       print_nl("  ");
3925       print_int(trie_used[k]);
3926       print_string(" for language ");
3927       print_int(k);
3928       dump_int(k);
3929       dump_int(trie_used[k]);
3930     }
3931   }
3932   dump_int(interaction);
3933   dump_int(format_ident);
3934   dump_int(ENDFMTCHECKSUM); /* magic checksum end of FMT file --- change ??? */ 
3935   tracing_stats = 0;
3936
3937   w_close(fmt_file);
3938 }
3939 #endif /* INITEX */
3940
3941 #ifdef INITEX
3942 /* sec 01336 */
3943 void init_prim (void)
3944 {
3945   no_new_control_sequence = false;
3946   primitive("lineskip", assign_glue, glue_base + line_skip_code);
3947   primitive("baselineskip", assign_glue, glue_base + baseline_skip_code);
3948   primitive("parskip", assign_glue, glue_base + par_skip_code);
3949   primitive("abovedisplayskip", assign_glue, glue_base + above_display_skip_code);
3950   primitive("belowdisplayskip", assign_glue, glue_base + below_display_skip_code);
3951   primitive("abovedisplayshortskip", assign_glue, glue_base + above_display_short_skip_code);
3952   primitive("belowdisplayshortskip", assign_glue, glue_base + below_display_short_skip_code);
3953   primitive("leftskip", assign_glue, glue_base + left_skip_code);
3954   primitive("rightskip", assign_glue, glue_base + right_skip_code);
3955   primitive("topskip", assign_glue, glue_base + top_skip_code);
3956   primitive("splittopskip", assign_glue, glue_base + split_top_skip_code);
3957   primitive("tabskip", assign_glue, glue_base + tab_skip_code);
3958   primitive("spaceskip", assign_glue, glue_base + space_skip_code);
3959   primitive("xspaceskip", assign_glue, glue_base + xspace_skip_code);
3960   primitive("parfillskip", assign_glue, glue_base + par_fill_skip_code);
3961   primitive("thinmuskip", assign_mu_glue, glue_base + thin_mu_skip_code);
3962   primitive("medmuskip", assign_mu_glue, glue_base + med_mu_skip_code);
3963   primitive("thickmuskip", assign_mu_glue, glue_base + thick_mu_skip_code);
3964   primitive("output", assign_toks, output_routine_loc);
3965   primitive("everypar", assign_toks, every_par_loc);
3966   primitive("everymath", assign_toks, every_math_loc);
3967   primitive("everydisplay", assign_toks, every_display_loc);
3968   primitive("everyhbox", assign_toks, every_hbox_loc);
3969   primitive("everyvbox", assign_toks, every_vbox_loc);
3970   primitive("everyjob", assign_toks, every_job_loc);
3971   primitive("everycr", assign_toks, every_cr_loc);
3972   primitive("errhelp", assign_toks, err_help_loc);
3973   primitive("pretolerance", assign_int, int_base + pretolerance_code);
3974   primitive("tolerance", assign_int, int_base + tolerance_code);
3975   primitive("linepenalty", assign_int, int_base + line_penalty_code);
3976   primitive("hyphenpenalty", assign_int, int_base + hyphen_penalty_code);
3977   primitive("exhyphenpenalty", assign_int, int_base + ex_hyphen_penalty_code);
3978   primitive("clubpenalty", assign_int, int_base + club_penalty_code);
3979   primitive("widowpenalty", assign_int, int_base + widow_penalty_code);
3980   primitive("displaywidowpenalty", assign_int, int_base + display_widow_penalty_code);
3981   primitive("brokenpenalty", assign_int, int_base + broken_penalty_code);
3982   primitive("binoppenalty", assign_int, int_base + bin_op_penalty_code);
3983   primitive("relpenalty", assign_int, int_base + rel_penalty_code);
3984   primitive("predisplaypenalty", assign_int, int_base + pre_display_penalty_code);
3985   primitive("postdisplaypenalty", assign_int, int_base + post_display_penalty_code);
3986   primitive("interlinepenalty", assign_int, int_base + inter_line_penalty_code);
3987   primitive("doublehyphendemerits", assign_int, int_base + double_hyphen_demerits_code);
3988   primitive("finalhyphendemerits", assign_int, int_base + final_hyphen_demerits_code);
3989   primitive("adjdemerits", assign_int, int_base + adj_demerits_code);
3990   primitive("mag", assign_int, int_base + mag_code);
3991   primitive("delimiterfactor", assign_int, int_base + delimiter_factor_code);
3992   primitive("looseness", assign_int, int_base + looseness_code);
3993   primitive("time", assign_int, int_base + time_code);
3994   primitive("day", assign_int, int_base + day_code);
3995   primitive("month", assign_int, int_base + month_code);
3996   primitive("year", assign_int, int_base + year_code);
3997   primitive("showboxbreadth", assign_int, int_base + show_box_breadth_code);
3998   primitive("showboxdepth", assign_int, int_base + show_box_depth_code);
3999   primitive("hbadness", assign_int, int_base + hbadness_code);
4000   primitive("vbadness", assign_int, int_base + vbadness_code);
4001   primitive("pausing", assign_int, int_base + pausing_code);
4002   primitive("tracingonline", assign_int, int_base + tracing_online_code);
4003   primitive("tracingmacros", assign_int, int_base + tracing_macros_code);
4004   primitive("tracingstats", assign_int, int_base + tracing_stats_code);
4005   primitive("tracingparagraphs", assign_int, int_base + tracing_paragraphs_code);
4006   primitive("tracingpages", assign_int, int_base + tracing_pages_code);
4007   primitive("tracingoutput", assign_int, int_base + tracing_output_code);
4008   primitive("tracinglostchars", assign_int, int_base + tracing_lost_chars_code);
4009   primitive("tracingcommands", assign_int, int_base + tracing_commands_code);
4010   primitive("tracingrestores", assign_int, int_base + tracing_restores_code);
4011   primitive("uchyph", assign_int, int_base + uc_hyph_code);
4012   primitive("outputpenalty", assign_int, int_base + output_penalty_code);
4013   primitive("maxdeadcycles", assign_int, int_base + max_dead_cycles_code);
4014   primitive("hangafter", assign_int, int_base + hang_after_code);
4015   primitive("floatingpenalty", assign_int, int_base + floating_penalty_code);
4016   primitive("globaldefs", assign_int, int_base + global_defs_code);
4017   primitive("fam", assign_int, int_base + cur_fam_code);
4018   primitive("escapechar", assign_int, int_base + escape_char_code);
4019   primitive("defaulthyphenchar", assign_int, int_base + default_hyphen_char_code);
4020   primitive("defaultskewchar", assign_int, int_base + default_skew_char_code);
4021   primitive("endlinechar", assign_int, int_base + end_line_char_code);
4022   primitive("newlinechar", assign_int, int_base + new_line_char_code);
4023   primitive("language", assign_int, int_base + language_code);
4024   primitive("lefthyphenmin", assign_int, int_base + left_hyphen_min_code);
4025   primitive("righthyphenmin", assign_int, int_base + right_hyphen_min_code);
4026   primitive("holdinginserts", assign_int, int_base + holding_inserts_code);
4027   primitive("errorcontextlines", assign_int, int_base + error_context_lines_code);
4028   primitive("parindent", assign_dimen, dimen_base + par_indent_code);
4029   primitive("mathsurround", assign_dimen, dimen_base + math_surround_code);
4030   primitive("lineskiplimit", assign_dimen, dimen_base + line_skip_limit_code);
4031   primitive("hsize", assign_dimen, dimen_base + hsize_code);
4032   primitive("vsize", assign_dimen, dimen_base + vsize_code);
4033   primitive("maxdepth", assign_dimen, dimen_base + max_depth_code);
4034   primitive("splitmaxdepth", assign_dimen, dimen_base + split_max_depth_code);
4035   primitive("boxmaxdepth", assign_dimen, dimen_base + box_max_depth_code);
4036   primitive("hfuzz", assign_dimen, dimen_base + hfuzz_code);
4037   primitive("vfuzz", assign_dimen, dimen_base + vfuzz_code);
4038   primitive("delimitershortfall", assign_dimen, dimen_base + delimiter_shortfall_code);
4039   primitive("nulldelimiterspace", assign_dimen, dimen_base + null_delimiter_space_code);
4040   primitive("scriptspace", assign_dimen, dimen_base + script_space_code);
4041   primitive("predisplaysize", assign_dimen, dimen_base + pre_display_size_code);
4042   primitive("displaywidth", assign_dimen, dimen_base + display_width_code);
4043   primitive("displayindent", assign_dimen, dimen_base + display_indent_code);
4044   primitive("overfullrule", assign_dimen, dimen_base + overfull_rule_code);
4045   primitive("hangindent", assign_dimen, dimen_base + hang_indent_code);
4046   primitive("hoffset", assign_dimen, dimen_base + h_offset_code);
4047   primitive("voffset", assign_dimen, dimen_base + v_offset_code);
4048   primitive("emergencystretch", assign_dimen, dimen_base + emergency_stretch_code);
4049   primitive(" ", ex_space, 0);
4050   primitive("/", ital_corr, 0);
4051   primitive("accent", accent, 0);
4052   primitive("advance", advance, 0);
4053   primitive("afterassignment", after_assignment, 0);
4054   primitive("aftergroup", after_group, 0);
4055   primitive("begingroup", begin_group, 0);
4056   primitive("char", char_num, 0);
4057   primitive("csname", cs_name, 0);
4058   primitive("delimiter", delim_num, 0);
4059   primitive("divide", divide, 0);
4060   primitive("endcsname", end_cs_name, 0);
4061   primitive("endgroup", end_group, 0);
4062   text(frozen_end_group) = make_string_pool("endgroup");
4063   eqtb[frozen_end_group] = eqtb[cur_val]; 
4064   primitive("expandafter", expand_after, 0);
4065   primitive("font", def_font, 0);
4066   primitive("fontdimen", assign_font_dimen, 0);
4067   primitive("halign", halign, 0);
4068   primitive("hrule", hrule, 0);
4069   primitive("ignorespaces", ignore_spaces, 0);
4070   primitive("insert", insert, 0);
4071   primitive("mark", mark, 0);
4072   primitive("mathaccent", math_accent, 0);
4073   primitive("mathchar", math_char_num, 0);
4074   primitive("mathchoice", math_choice, 0);
4075   primitive("multiply", multiply, 0);
4076   primitive("noalign", no_align, 0);
4077   primitive("noboundary", no_boundary, 0);
4078   primitive("noexpand", no_expand, 0);
4079   primitive("nonscript", non_script, 0);
4080   primitive("omit", omit, 0);
4081   primitive("parshape", set_shape, 0);
4082   primitive("penalty", break_penalty, 0);
4083   primitive("prevgraf", set_prev_graf, 0);
4084   primitive("radical", radical, 0);
4085   primitive("read", read_to_cs, 0);
4086   primitive("relax", relax, 256);
4087   text(frozen_relax) = make_string_pool("relax");
4088   eqtb[frozen_relax] = eqtb[cur_val];
4089   primitive("setbox", set_box, 0);
4090   primitive("the", the, 0);
4091   primitive("toks", toks_register, 0);
4092   primitive("vadjust", vadjust, 0);
4093   primitive("valign", valign, 0);
4094   primitive("vcenter", vcenter, 0);
4095   primitive("vrule", vrule, 0);
4096   primitive("par", par_end, 256);
4097   par_loc = cur_val; 
4098   par_token = cs_token_flag + par_loc;
4099   primitive("input", input, 0);
4100   primitive("endinput", input, 1);
4101   primitive("topmark", top_bot_mark, 0);
4102   primitive("firstmark", top_bot_mark, 1);
4103   primitive("botmark", top_bot_mark, 2);
4104   primitive("splitfirstmark", top_bot_mark, 3);
4105   primitive("splitbotmark", top_bot_mark, 4);
4106   primitive("count", tex_register, 0);
4107   primitive("dimen", tex_register, 1);
4108   primitive("skip", tex_register, 2);
4109   primitive("muskip", tex_register, 3);
4110   primitive("spacefactor", set_aux, 102);
4111   primitive("prevdepth", set_aux, 1);
4112   primitive("deadcycles", set_page_int, 0);
4113   primitive("insertpenalties", set_page_int, 1);
4114   primitive("wd", set_box_dimen, 1);
4115   primitive("ht", set_box_dimen, 3);
4116   primitive("dp", set_box_dimen, 2);
4117   primitive("lastpenalty", last_item, 0);
4118   primitive("lastkern", last_item, 1);
4119   primitive("lastskip", last_item, 2);
4120   primitive("inputlineno", last_item, 3);
4121   primitive("badness", last_item, 4);
4122   primitive("number", convert, 0);
4123   primitive("romannumeral", convert, 1);
4124   primitive("string", convert, 2);
4125   primitive("meaning", convert, 3);
4126   primitive("fontname", convert, 4);
4127   primitive("jobname", convert, 5);
4128   primitive("if", if_test, 0);
4129   primitive("ifcat", if_test, 1);
4130   primitive("ifnum", if_test, 2);
4131   primitive("ifdim", if_test, 3);
4132   primitive("ifodd", if_test, 4);
4133   primitive("ifvmode", if_test, 5);
4134   primitive("ifhmode", if_test, 6);
4135   primitive("ifmmode", if_test, 7);
4136   primitive("ifinner", if_test, 8);
4137   primitive("ifvoid", if_test, 9);
4138   primitive("ifhbox", if_test, 10);
4139   primitive("ifvbox", if_test, 11);
4140   primitive("ifx", if_test, 12);
4141   primitive("ifeof", if_test, 13);
4142   primitive("iftrue", if_test, 14);
4143   primitive("iffalse", if_test, 15);
4144   primitive("ifcase", if_test, 16);
4145   primitive("fi", fi_or_else, 2);
4146   text(frozen_fi) = make_string_pool("fi");
4147   eqtb[frozen_fi] = eqtb[cur_val];
4148   primitive("or", fi_or_else, 4);
4149   primitive("else", fi_or_else, 3);
4150   primitive("nullfont", set_font, 0);
4151   text(frozen_null_font) = 795;
4152   eqtb[frozen_null_font] = eqtb[cur_val];
4153   primitive("span", tab_mark, 256);
4154   primitive("cr", car_ret, 257);
4155   text(frozen_cr) = make_string_pool("cr");
4156   eqtb[frozen_cr] = eqtb[cur_val];
4157   primitive("crcr", car_ret, 258);
4158   text(frozen_end_template) = make_string_pool("endtemplate");
4159   text(frozen_endv) = make_string_pool("endtemplate");
4160   eq_type(frozen_endv) = endv;
4161   equiv(frozen_endv) = null_list; 
4162   eq_level(frozen_endv) = level_one; 
4163   eqtb[frozen_end_template] = eqtb[frozen_endv]; 
4164   eq_type(frozen_end_template) = end_template;
4165   primitive("pagegoal", set_page_dimen, 0);
4166   primitive("pagetotal", set_page_dimen, 1);
4167   primitive("pagestretch", set_page_dimen, 2);
4168   primitive("pagefilstretch", set_page_dimen, 3);
4169   primitive("pagefillstretch", set_page_dimen, 4);
4170   primitive("pagefilllstretch", set_page_dimen, 5);
4171   primitive("pageshrink", set_page_dimen, 6);
4172   primitive("pagedepth", set_page_dimen, 7);
4173   primitive("end", end_match, 0);
4174   primitive("dump", stop, 1);
4175   primitive("hskip", hskip, 4);
4176   primitive("hfil", hskip, 0);
4177   primitive("hfill", hskip, 1);
4178   primitive("hss", hskip, 2);
4179   primitive("hfilneg", hskip, 3);
4180   primitive("vskip", vskip, 4);
4181   primitive("vfil", vskip, 0);
4182   primitive("vfill", vskip, 1);
4183   primitive("vss", vskip, 2);
4184   primitive("vfilneg", vskip, 3);
4185   primitive("mskip", mskip, 5);
4186   primitive("kern", kern, 1);
4187   primitive("mkern", mkern, 99);
4188   primitive("moveleft", hmove, 1);
4189   primitive("moveright", hmove, 0);
4190   primitive("raise", vmove, 1);
4191   primitive("lower", vmove, 0);
4192   primitive("box", make_box, 0);
4193   primitive("copy", make_box, 1);
4194   primitive("lastbox", make_box, 2);
4195   primitive("vsplit", make_box, 3);
4196   primitive("vtop", make_box, 4);
4197   primitive("vbox", make_box, 5);
4198   primitive("hbox", make_box, 106);
4199   primitive("shipout", leader_ship, 99);
4200   primitive("leaders", leader_ship, 100);
4201   primitive("cleaders", leader_ship, 101);
4202   primitive("xleaders", leader_ship, 102);
4203   primitive("indent", start_par, 1);
4204   primitive("noindent", start_par, 0);
4205   primitive("unpenalty", remove_item, 12);
4206   primitive("unkern", remove_item, 11);
4207   primitive("unskip", remove_item, 10);
4208   primitive("unhbox", un_hbox, 0);
4209   primitive("unhcopy", un_hbox, 1);
4210   primitive("unvbox", un_vbox, 0);
4211   primitive("unvcopy", un_vbox, 1);
4212   primitive("-", discretionary, 1);
4213   primitive("discretionary", discretionary, 0);
4214   primitive("eqno", eq_no, 0);
4215   primitive("leqno", eq_no, 1);
4216   primitive("mathord", math_comp, 16);
4217   primitive("mathop", math_comp, 17);
4218   primitive("mathbin", math_comp, 18);
4219   primitive("mathrel", math_comp, 19);
4220   primitive("mathopen", math_comp, 20);
4221   primitive("mathclose", math_comp, 21);
4222   primitive("mathpunct", math_comp, 22);
4223   primitive("mathinner", math_comp, 23);
4224   primitive("underline", math_comp, 26);
4225   primitive("overline", math_comp, 27);
4226   primitive("displaylimits", limit_switch, 0);
4227   primitive("limits", limit_switch, 1);
4228   primitive("nolimits", limit_switch, 2);
4229   primitive("displaystyle", math_style, 0);
4230   primitive("textstyle", math_style, 2);
4231   primitive("scriptstyle", math_style, 4);
4232   primitive("scriptscriptstyle", math_style, 6);
4233   primitive("above", above, 0);
4234   primitive("over", above, 1);
4235   primitive("atop", above, 2);
4236   primitive("abovewithdelims", above, 3);
4237   primitive("overwithdelims", above, 4);
4238   primitive("atopwithdelims", above, 5);
4239   primitive("left", left_right, 30);
4240   primitive("right", left_right, 31);
4241   text(frozen_right) = make_string_pool("right");
4242   eqtb[frozen_right] = eqtb[cur_val]; 
4243   primitive("long", prefix, 1);
4244   primitive("outer", prefix, 2);
4245   primitive("global", prefix, 4);
4246   primitive("def", def, 0);
4247   primitive("gdef", def, 1);
4248   primitive("edef", def, 2);
4249   primitive("xdef", def, 3);
4250   primitive("let", let, 0);
4251   primitive("futurelet", let, 1);
4252   primitive("chardef", shorthand_def, 0);
4253   primitive("mathchardef", shorthand_def, 1);
4254   primitive("countdef", shorthand_def, 2);
4255   primitive("dimendef", shorthand_def, 3);
4256   primitive("skipdef", shorthand_def, 4);
4257   primitive("muskipdef", shorthand_def, 5);
4258   primitive("toksdef", shorthand_def, 6);
4259   primitive("catcode", def_code, (hash_size + 1883));
4260   primitive("mathcode", def_code, (hash_size + 2907));
4261   primitive("lccode", def_code, (hash_size + 2139));
4262   primitive("uccode", def_code, (hash_size + 2395));
4263   primitive("sfcode", def_code, (hash_size + 2651));
4264   primitive("delcode", def_code, (hash_size + 3474));
4265   primitive("textfont", def_family, (hash_size + 1835));
4266   primitive("scriptfont", def_family, (hash_size + 1851));
4267   primitive("scriptscriptfont", def_family, (hash_size + 1867));
4268   primitive("hyphenation", hyph_data, 0);
4269   primitive("patterns", hyph_data, 1);
4270   primitive("hyphenchar", assign_font_int, 0);
4271   primitive("skewchar", assign_font_int, 1);
4272   primitive("batchmode", set_interaction, 0);
4273   primitive("nonstopmode", set_interaction, 1);
4274   primitive("scrollmode", set_interaction, 2);
4275   primitive("errorstopmode", set_interaction, 3);
4276   primitive("openin", in_stream, 1);
4277   primitive("closein", in_stream, 0);
4278   primitive("message", message, 0);
4279   primitive("errmessage", message, 1);
4280   primitive("lowercase", case_shift, (hash_size + 2139));
4281   primitive("uppercase", case_shift, (hash_size + 2395));
4282   primitive("show", xray, 0);
4283   primitive("showbox", xray, 1);
4284   primitive("showthe", xray, 2);
4285   primitive("showlists", xray, 3);
4286   primitive("openout", extension, 0);
4287   primitive("write", extension, 1);
4288   write_loc = cur_val;
4289   primitive("closeout", extension, 2);
4290   primitive("special", extension, 3);
4291   primitive("immediate", extension, 4);
4292   primitive("setlanguage", extension, 5);
4293   no_new_control_sequence = true; 
4294 }
4295 #endif