OSDN Git Service

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