OSDN Git Service

update_terminal().
[putex/putex.git] / src / texsourc / tex0.c
index 63114e3..2e17801 100644 (file)
-#ifdef _WINDOWS
-  #define NOCOMM
-  #define NOSOUND
-  #define NODRIVERS
-  #define STRICT
-  #pragma warning(disable:4115) // kill rpcasync.h complaint
-  #include <windows.h>
-  #define MYLIBAPI __declspec(dllexport)
-#endif
+/* Copyright 2014 Clerk Ma
 
-#include "texwin.h"
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-#pragma warning(disable:4996)
-#pragma warning(disable:4131) // old style declarator
-#pragma warning(disable:4135) // conversion between different integral types 
-#pragma warning(disable:4127) // conditional expression is constant
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
 
-#include <setjmp.h>
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301 USA.  */
 
 #define EXTERN extern
-
 #include "texd.h"
 
-#ifdef IGNORED
-static void winerror (char * message)
-{
-  (void) MessageBox(NULL, message, "YandYTeX.DLL", MB_ICONSTOP | MB_OK);
-}
-#endif
-
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-void print_err (const char * s)
-{
-  if (interaction == error_stop_mode);
-    print_nl("! ");
-  print_string(s);
-}
-
-void tex_help (unsigned int n, ...)
-{
-  unsigned int i;
-  va_list help_arg;
-
-  if (n > 6) n = 6;
-  help_ptr = n;
-  va_start(help_arg, n);
-  for (i = n - 1; i > n - 1; --i)
-    help_line[i] = va_arg(help_arg, char *);
-  va_end(help_arg);
-}
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-
-// print newline
 /* sec 0058 */
 void print_ln (void)
 {
-  switch (selector) {
+  switch (selector)
+  {
     case term_and_log:
-      {
-        show_char('\n');
-        term_offset = 0;
-        (void) putc ('\n', log_file);
-        file_offset = 0;
-      }
+      show_char('\n');
+      term_offset = 0;
+      putc('\n', log_file);
+      file_offset = 0;
       break;
+
     case log_only:
-      {
-        (void) putc ('\n',  log_file);
-        file_offset = 0;
-      }
+      putc('\n', log_file);
+      file_offset = 0;
       break;
+
     case term_only:
-      {
-        show_char('\n');
-        term_offset = 0;
-      }
+      show_char('\n');
+      term_offset = 0;
       break;
+
     case no_print:
     case pseudo:
     case new_string:
-      ;
       break;
+
     default:
-      (void) putc ('\n', write_file[selector]);
+      putc('\n', write_file[selector]);
       break;
   }
 }
-/* sec 0059 */
+/* sec 0058 */
 void print_char_ (ASCII_code s)
 {
-  if(s == eqtb[(hash_size + 3212)].cint)
-    if (selector < pseudo) {
-      print_ln ();
+  if (s == new_line_char)
+    if (selector < pseudo)
+    {
+      print_ln();
       return;
     }
-  switch (selector) {
+
+  switch (selector)
+  {
     case term_and_log:
+      show_char(xchr[s]);
+      incr(term_offset);
+      putc(xchr[s], log_file);
+      incr(file_offset);
+
+      if (term_offset == max_print_line)
       {
-        (void) show_char(Xchr(s));
-        incr(term_offset);
-        (void) putc(Xchr(s), log_file);
-        incr(file_offset);
-        if (term_offset == max_print_line) {
-          show_char('\n');
-          term_offset = 0;
-        }
-        if (file_offset == max_print_line) {
-          (void) putc ('\n', log_file);
-          file_offset = 0;
-        }
+        show_char('\n');
+        term_offset = 0;
       }
-      break;
-    case log_only:
+      
+      if (file_offset == max_print_line)
       {
-        (void) putc(Xchr(s), log_file);
-        incr(file_offset);
-        if (file_offset == max_print_line) print_ln ();
+        putc ('\n', log_file);
+        file_offset = 0;
       }
+
       break;
+
+    case log_only:
+      putc(xchr[s], log_file);
+      incr(file_offset);
+
+      if (file_offset == max_print_line)
+        print_ln();
+
+      break;
+
     case term_only:
-      {
-        (void) show_char(Xchr(s));
-        incr(term_offset); 
-        if (term_offset == max_print_line) print_ln ();
-      }
+      show_char(xchr[s]);
+      incr(term_offset);
+
+      if (term_offset == max_print_line)
+        print_ln();
+
       break;
+
     case no_print:
-      ;
       break;
+
     case pseudo:
-      if(tally < trick_count)
-        trick_buf[tally % error_line]= s;
+      if (tally < trick_count)
+        trick_buf[tally % error_line] = s;
+
       break;
+
     case new_string:
-      {
 #ifdef ALLOCATESTRING
-        if (pool_ptr + 1 > current_pool_size) {
-          str_pool = realloc_str_pool (increment_pool_size);
-        }
-        if (pool_ptr < current_pool_size) {
-          str_pool[pool_ptr]= s;
-          incr(pool_ptr);
-        }
+      if (pool_ptr + 1 > current_pool_size)
+        str_pool = realloc_str_pool (increment_pool_size);
+      
+      if (pool_ptr < current_pool_size)
+        append_char(s);
 #else
-        if (pool_ptr < pool_size) {
-          str_pool[pool_ptr]= s;
-          incr(pool_ptr);
-        }
+      if (pool_ptr < pool_size)
+        append_char(s);
 #endif
-      }
-      break; 
-    default: 
-      (void) putc(Xchr(s), write_file[selector]);
-      break; 
+      break;
+
+    default:
+      putc(xchr[s], write_file[selector]);
+      break;
   }
+
   incr(tally);
 }
 /* sec 0059 */
-/* This could be made more efficient using fputs ? ... bkph */
 void print_ (integer s)
 {
   pool_pointer j;
   integer nl;
-  if (s >= str_ptr) s = 259; /* ??? */
-  else if (s < 256)
-    if (s < 0) s = 259; /* ??? */
-    else {
-      if (selector > pseudo){
-        print_char(s);
-        return;
-      }
-      if ((s == eqtb[(hash_size + 3212)].cint))
-        if (selector < 20) {
-          print_ln ();
+
+  if (s >= str_ptr)
+    s = 259; /* ??? */
+  else
+  {
+    if (s < 256)
+    {
+      if (s < 0)
+        s = 259; /* ??? */
+      else
+      {
+        if (selector > pseudo)
+        {
+          print_char(s);
           return;
         }
-      nl = eqtb[(hash_size + 3212)].cint; /* save eol */
-      eqtb[(hash_size + 3212)].cint = -1; 
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-/*    if (!show_in_hex && s < 256)  */      /* show control chars also ?? */
-      if (!show_in_hex && s < 256 && s >= 32) {      /* 94/Jan/26 */
-/*        following added 1996/Jan/20 */
-        if (show_in_dos && s > 127) {     /* translate ANSI to DOS 850 */
-          if (wintodos[s-128] > 0) print_char (wintodos[s-128]);
-          else {              /* print in hex after all */
-            j = str_start[s]; 
-            while(j < str_start[s + 1]){
-              print_char(str_pool[j]); 
-              incr(j); 
-            } 
+
+        if ((s == new_line_char))
+          if (selector < pseudo)
+          {
+            print_ln();
+            return;
           }
-        } else print_char(s);       /* don't translate to hex */
-      } else {                  /* not just a character */
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-        j = str_start[s]; 
-        while(j < str_start[s + 1]){
-          print_char(str_pool[j]); 
-          incr(j); 
-        } 
+          
+          nl = new_line_char;
+          new_line_char = -1;
+          
+          /* translate ansi to dos 850 */
+          if (!show_in_hex && s < 256 && s >= 32)
+          {
+            if (show_in_dos && s > 127)
+            {
+              if (wintodos[s - 128] > 0)
+              {
+                print_char(wintodos[s - 128]);
+              }
+              else
+              {
+                j = str_start[s];
+
+                while (j < str_start[s + 1])
+                {
+                  print_char(str_pool[j]);
+                  incr(j);
+                }
+              }
+            }
+            else
+            {
+              print_char(s);       /* don't translate to hex */
+            }
+          }
+          else
+          {                       /* not just a character */
+            j = str_start[s];
+
+            while (j < str_start[s + 1])
+            {
+              print_char(str_pool[j]);
+              incr(j);
+            }
+          }
+
+          new_line_char = nl; /* restore eol */
+          return;
       }
-      eqtb[(hash_size + 3212)].cint = nl; /* restore eol */
-      return; 
     }
+  }
 /*  we get here with s > 256 - i.e. not a single character */
-  j = str_start[s]; 
-  while(j < str_start[s + 1]){
-    print_char(str_pool[j]); 
-    incr(j); 
+  j = str_start[s];
+
+  while (j < str_start[s + 1])
+  {
+    print_char(str_pool[j]);
+    incr(j);
   }
-} 
-void print_string_ (unsigned char *s)
+}
+/* string version print. */
+void print_string_ (const char *s)
 {
-  while (*s > 0) print_char(*s++);
+  while (*s > 0)
+    print_char(*s++);
 }
 /* sec 0060 */
-// print string number s from string pool by calling print_
 void slow_print_ (integer s)
 {
   pool_pointer j;
-  if ((s >= str_ptr) || (s < 256)) print(s);
-  else {
+
+  if ((s >= str_ptr) || (s < 256))
+    print(s);
+  else
+  {
     j = str_start[s];
-    while (j < str_start[s + 1]) {
-//    if (str_pool[j]>= 128) print(str_pool[j]-128); // debugging only
-//    if (str_pool[j]== 0) print(36); // debugging only
+
+    while (j < str_start[s + 1])
+    {
       print(str_pool[j]);
       incr(j);
     }
   }
 }
 /* sec 0062 */
-// print newline followed by string number s (unless at start of line)
-void print_nl_ (char * s)
+void print_nl (const char * s)
 {
   if (((term_offset > 0) && (odd(selector))) ||
       ((file_offset > 0) && (selector >= log_only)))
-    print_ln ();
+    print_ln();
+
   print_string(s);
 }
 /* sec 0063 */
-// print string number s preceded by escape character
-void print_esc_ (char * s)
+void print_esc (const char * s)
 {
   integer c;
-  c = eqtb[(hash_size + 3208)].cint;
-  if(c >= 0)
-    if(c < 256) print(c);
-  //slow_print(s);
+
+  c = escape_char;
+
+  if (c >= 0)
+    if (c < 256)
+      print(c);
+
   print_string(s);
-} 
+}
 /* sec 0064 */
 void print_the_digs_ (eight_bits k)
 {
-  while (k > 0) {
+  while (k > 0)
+  {
     decr(k);
-    if(dig[k]< 10)
+
+    if (dig[k] < 10)
       print_char('0' + dig[k]);
     else
       print_char('A' + dig[k]);
@@ -264,95 +275,104 @@ void print_int_ (integer n)
 {
   char k;
   integer m;
+
   k = 0;
-  if (n < 0) {
+
+  if (n < 0)
+  {
     print_char('-');
-    if(n > -100000000L)
+
+    if (n > -100000000L)
       n = - (integer) n;
-    else {
+    else
+    {
       m = -1 - n;
       n = m / 10;
-      m =(m % 10)+ 1;
+      m = (m % 10) + 1;
       k = 1;
-      if(m < 10)
-        dig[0]= (char) m;
-      else {
-        dig[0]= 0;
+
+      if (m < 10)
+        dig[0] = (char) m;
+      else
+      {
+        dig[0] = 0;
         incr(n);
       }
     }
   }
-  do {
-    dig[k]= (char) (n % 10);
-    n = n / 10;
-    incr(k);
-  } while(!(n == 0));
+
+  do
+    {
+      dig[k] = (char) (n % 10);
+      n = n / 10;
+      incr(k);
+    }
+  while (!(n == 0));
+
   print_the_digs(k);
 }
 /* sec 0262 */
 void print_cs_ (integer p)
 {
-  if (p < 514)       /* if p < hash_base then ... p.262 */
-  if (p >= 257)        /* if p > single_base then ... p.262 */
-  if (p == 513)        /* if p = null_cs then ... p.262 */
-  {
-    print_esc("csname");
-    print_esc("endcsname");
-    print_char(' ');
-  } else {
-    //print_esc(p - 257);   /* p - single_base */
-    print_esc("");print(p - 257);
-/*  if cat_code(p - single_base) = letter then ... p.262 */
-    if(eqtb[(hash_size + 1883) + p - 257].hh.v.RH == 11)
-    print_char(' ');
-  } 
-  else if (p < 1)
-    print_esc("IMPOSSIBLE.");
-  else print(p - 1); 
-  else if (p >= (hash_size + 781)) /* undefined_control_sequence */
+  if (p < hash_base)
+    if (p >= single_base)
+      if (p == null_cs)
+      {
+        print_esc("csname");
+        print_esc("endcsname");
+        print_char(' ');
+      }
+      else
+      {
+        print_esc(""); print(p - single_base);
+
+        if (cat_code(p - single_base) == letter)
+          print_char(' ');
+      }
+    else if (p < active_base)
+      print_esc("IMPOSSIBLE.");
+    else print(p - active_base);
+  else if (p >= undefined_control_sequence)
     print_esc("IMPOSSIBLE.");
-  else if ((hash[p].v.RH >= str_ptr)) 
+  else if ((text(p) >= str_ptr))
     print_esc("NONEXISTENT.");
-  else {
-    //print_esc(hash[p].v.RH); 
-    print_esc(""); print(hash[p].v.RH);
-    print_char(32);     /*    */
+  else
+  {
+    print_esc("");
+    print(text(p));
+    print_char(' ');
   }
 }
 /* sec 0263 */
 void sprint_cs_(halfword p)
 { 
-  if(p < 514)       /* if p < hash_base then ... p.263 */
-  if(p < 257)       /* if p < single_base then ... p.263 */
-    print(p - 1);     /* print (p - active_base); */
-  else if(p < 513)      /* else if p < null_cs then ... */
-    //print_esc(p - 257); /* print (p - single_base); */
-  {print_esc(""); print(p-257);}
-  else {
-    print_esc("csname");
-    print_esc("endcsname");
-  } 
-  else //print_esc(hash[p].v.RH); 
+  if (p < hash_base)
+    if (p < single_base)
+      print(p - active_base);
+    else if (p < null_cs)
+    {
+      print_esc("");
+      print(p - single_base);
+    }
+    else
+    {
+      print_esc("csname");
+      print_esc("endcsname");
+    }
+  else
   {
-    print_esc(""); print(hash[p].v.RH);
+    print_esc(""); print(text(p));
   }
-} 
+}
 /* sec 0518 */
-/* ! I can't find file `  c:/foo/  accents  .tex  '. */
 void print_file_name_(integer n, integer a, integer e)
-{ 
-/*  sprintf(log_line, "\na %d n %d e %d\n", a, n, e); */
-/*  show_line(log_line, 0); */
-//  print_char(33);  // debugging only
-  slow_print(a); 
-//  print_char(33);  // debugging only
-  slow_print(n); 
-//  print_char(33);  // debugging only
-  slow_print(e); 
-//  print_char(33);  // debugging only
+{
+  slow_print(a);
+  slow_print(n);
+  slow_print(e);
 }
 /* sec 0699 */
-void print_size_(integer s) 
+void print_size_ (integer s)
 { 
   if (s == 0)
     print_esc("textfont");
@@ -362,73 +382,73 @@ void print_size_(integer s)
     print_esc("scriptscriptfont");
 } 
 /* sec 1355 */
-void print_write_whatsit_(str_number s, halfword p)
+void print_write_whatsit_(str_number s, pointer p)
 {
-  //print_esc(s); 
-  print_esc(""); print(s);
-  if (mem[p + 1].hh.v.LH < 16)
-    print_int(mem[p + 1].hh.v.LH); 
-  else if (mem[p + 1].hh.v.LH == 16)
+  print_esc("");
+  print(s);
+
+  if (write_stream(p) < 16)
+    print_int(write_stream(p)); 
+  else if (write_stream(p) == 16)
     print_char('*');
   else print_char('-');
-} 
-#ifdef DEBUG
-#endif /* DEBUG */
+}
 /* sec 0081 */
-// called from itex.c and tex0.c only  NASTY NASTY!
-// now uses uses non-local goto (longjmp) 1999/Nov/7
 void jump_out (void) 
 {
-  close_files_and_terminate (); 
+  close_files_and_terminate();
+
   {
     int code;
+
 #ifndef _WINDOWS
     fflush(stdout); 
 #endif
-    ready_already = 0;
-
-    if (trace_flag) show_line("EXITING at JUMPOUT\n", 0);
 
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-//    if (endit(history) != 0) history = 2; /* 93/Dec/26 in local.c */
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
+    ready_already = 0;
 
-//    abort_flag++;       // TURN OFF THE POWER ???
+    if (trace_flag)
+      puts("EXITING at JUMPOUT");
 
     if ((history != 0) && (history != 1))
       code = 1;
     else
       code = 0;
-    uexit(code); 
-//    longjmp(jumpbuffer, code+1);
+
+    uexit(code);
   }
 }
 /* sec 0082 */
 // deal with error by asking for user response 0-9, D, E, H, I, X, Q, R, S
 // NOTE: this may JUMPOUT either via X, or because of too many errors
 void error (void)
-{/* 22 10 */ 
-  ASCII_code c; 
-  integer s1, s2, s3, s4; 
-  if (history < 2) history = 2;
+{
+  ASCII_code c;
+  integer s1, s2, s3, s4;
+
+  if (history < error_message_issued)
+    history = error_message_issued;
 
   print_char('.');
   show_context();
 
-  if (interaction == 3)
-    while (true) {
-lab22:          /* loop */
-      clear_for_error_prompt ();
+  if (interaction == error_stop_mode)
+    while (true)
+    {
+continu:
+      clear_for_error_prompt();
+      prompt_input("? ");
+
+      if (last == first)
+        return; // no input
+
+      c = buffer[first];
+
+      if (c >= 'a')
+        c = (c + 'A' - 'a'); 
+
+      switch (c)
       {
-        ;
-        print_string("? ");
-        term_input(264, help_ptr);
-      } 
-      if (last == first) return;    // no input
-      c = buffer[first];        // analyze first letter typed
-      if(c >= 97)           // uppercase letter first
-        c = (unsigned char) (c - 32); 
-      switch (c) {
         case '0':
         case '1':
         case '2':
@@ -439,21 +459,26 @@ lab22:          /* loop */
         case '7':
         case '8':
         case '9':
-          if(deletions_allowed) {
-            s1 = cur_tok; 
-            s2 = cur_cmd; 
-            s3 = cur_chr; 
-            s4 = align_state; 
-            align_state = 1000000L; 
-            OK_to_interrupt = false; 
-            if ((last > first + 1) && (buffer[first + 1]>= 48) && (buffer[first + 1]<= 57))
-              c = (unsigned char) (c * 10 + buffer[first + 1]- 48 * 11); 
+          if (deletions_allowed)
+          {
+            s1 = cur_tok;
+            s2 = cur_cmd;
+            s3 = cur_chr;
+            s4 = align_state;
+            align_state = 1000000L;
+            OK_to_interrupt = false;
+
+            if ((last > first + 1) && (buffer[first + 1] >= '0') && (buffer[first + 1] <= '9'))
+              c = (c * 10 + buffer[first + 1] - '0' * 11);
             else
-              c = (unsigned char) (c - 48);
-            while (c > 0) {
-              get_token ();
+              c = (c - 48);
+            
+            while (c > 0)
+            {
+              get_token();
               decr(c);
             }
+
             cur_tok = s1;
             cur_cmd = s2;
             cur_chr = s3;
@@ -461,336 +486,346 @@ lab22:          /* loop */
             OK_to_interrupt = true;
             help2("I have just deleted some text, as you asked.",
                 "You can now delete more, or insert, or whatever.");
-            show_context ();
-            goto lab22;     /* loop again */
-          } 
-          break; 
-          ;
+            show_context();
+            goto continu;
+          }
+          break;
+
 #ifdef DEBUG
         case 'D':
           {
-            debug_help ();
-            goto lab22;       /* loop again */
+            debug_help();
+            goto continu;
           }
-          break; 
-#endif /* DEBUG */
+          break;
+#endif
+
         case 'E':
-          if (base_ptr > 0) {
+          if (base_ptr > 0)
+          {
             edit_name_start = str_start[input_stack[base_ptr].name_field];
-            edit_name_length = str_start[input_stack[base_ptr].name_field + 1] - 
-              str_start[input_stack[base_ptr].name_field];
+            edit_name_length = length(input_stack[base_ptr].name_field);
             edit_line = line;
             jump_out();
-//            return;     // can drop through now 99/Oct/20
           }
           break;
+
         case 'H':
           {
             if (use_err_help)
             {
-              give_err_help ();
+              give_err_help();
               use_err_help = false;
-            } else {
+            }
+            else
+            {
               if (help_ptr == 0)
                 help2("Sorry, I don't know how to help in this situation.",
                     "Maybe you should try asking a human?");
-              do {
-                decr(help_ptr); 
-                print_string(help_line[help_ptr]);
-                print_ln ();
-              } while (!(help_ptr == 0));
+              do
+                {
+                  decr(help_ptr);
+                  print_string(help_line[help_ptr]);
+                  print_ln();
+                }
+              while (!(help_ptr == 0));
             }
+
             help4("Sorry, I already gave what help I could...",
                 "Maybe you should try asking a human?",
                 "An error might have occurred before I noticed any problems.",
                 "``If all else fails, read the instructions.''");
-            goto lab22; /* loop again */
+            goto continu;
           }
           break;
+
         case 'I':
           {
-            begin_file_reading ();
+            begin_file_reading();
+
             if (last > first + 1)
             {
-              cur_input.loc_field = first + 1;
-              buffer[first]= 32;
-            } else {
-              {
-                ;
-                print_string("insert>");
-                term_input(276, 0);
-              }
-              cur_input.loc_field = first;
+              loc = first + 1;
+              buffer[first] = 32;
+            }
+            else
+            {
+              prompt_input("insert>");
+              loc = first;
             }
+
             first = last;
-            cur_input.limit_field = last - 1;
+            limit = last - 1;
+
             return;
           }
           break;
+
         case 'Q':
         case 'R':
         case 'S':
-        {
-          error_count = 0; 
-          interaction = 0 + c - 81; /* Q = 0, R = 1, S = 2, T = 3 */
-          print_string("OK, entering ");
-          switch(c){
-            case 81 :       /* Q */
+          {
+            error_count = 0; 
+            interaction = 0 + c - 81; /* Q = 0, R = 1, S = 2, T = 3 */
+            print_string("OK, entering ");
+
+            switch (c)
             {
-              print_esc("batchmode"); /*  */
-              decr(selector); 
-            } 
-            break; 
-            case 82 :       /* R */
-              print_esc("nonstopmode"); /*  */
-              break; 
-            case 83 :       /* S */
-              print_esc("scrollmode"); /*   */
-              break; 
-          } 
-          print_string("...");
-          print_ln (); 
-#ifndef _WINDOWS
-          fflush(stdout); 
-#endif
-          return; 
-        } 
-        break; 
-        case 88 :       /* X */
-        {
-          interaction = 2; 
-          jump_out();
-//          return;     // can drop through now 99/Oct/20   
-        } 
-        break; 
-        default: 
-          ; 
-          break; 
+              case 'Q':
+                print_esc("batchmode");
+                decr(selector);
+                break;
+
+              case 'R':
+                print_esc("nonstopmode");
+                break;
+
+              case 'S':
+                print_esc("scrollmode");
+                break;
+            }
+
+            print_string("...");
+            print_ln();
+            update_terminal();
+            return;
+          }
+          break;
+
+        case 'X':
+          {
+            interaction = 2;
+            jump_out();
+          }
+          break;
+
+        default:
+          break;
       }           /* end of switch analysing response character */
+
       {
         print_string("Type <return> to proceed, S to scroll future error messages,");
-        print_nl("R to run without stopping, Q to run quietly,");  /*  */
-        print_nl("I to insert something, ");  /*  */
-        if (base_ptr > 0) print_string("E to edit your file,");
-        if(deletions_allowed) print_nl("1 or ... or 9 to ignore the next 1 to 9 tokens of input,"); /*  */
-        print_nl("H for help, X to quit.");  /*  */
-      } 
-    }   /* end of while(true) loop */
-
-  incr(error_count); 
-  if(error_count == 100) {
+        print_nl("R to run without stopping, Q to run quietly,");
+        print_nl("I to insert something, ");
+
+        if (base_ptr > 0)
+          print_string("E to edit your file,");
+
+        if (deletions_allowed)
+          print_nl("1 or ... or 9 to ignore the next 1 to 9 tokens of input,");
+
+        print_nl("H for help, X to quit.");
+      }
+    }
+
+  incr(error_count);
+
+  if (error_count == 100)
+  {
     print_nl("(That makes 100 errors; please try again.)");
-    history = 3; 
+    history = 3;
     jump_out();
-//    return;     // can drop through now 99/Oct/20   
-  } 
-  if(interaction > 0) decr(selector); 
-  if(use_err_help) {
-    print_ln (); 
-    give_err_help (); 
-  } 
-  else while(help_ptr > 0){
-    decr(help_ptr); 
-    print_nl(help_line[help_ptr]); 
-  } 
-  print_ln (); 
-  if(interaction > 0)incr(selector); 
-  print_ln (); 
-} 
+  }
 
-void fatal_error_(char * s)
+  if (interaction > batch_mode)
+    decr(selector);
+
+  if (use_err_help)
+  {
+    print_ln();
+    give_err_help();
+  }
+  else while (help_ptr > 0)
+  {
+    decr(help_ptr);
+    print_nl(help_line[help_ptr] == NULL ? "" : help_line[help_ptr]);
+  }
+
+  print_ln();
+
+  if (interaction > batch_mode)
+    incr(selector);
+  
+  print_ln();
+}
+/* sec 0093 */
+void fatal_error(char * s)
 {
-  normalize_selector ();
+  normalize_selector();
   print_err("Emergency stop");
-  help1(s); 
-  {
-    if(interaction == 3)interaction = 2; 
-    if(log_opened){
-      error ();
-    }
-    ;
-#ifdef DEBUG
-    if(interaction > 0)debug_help (); 
-#endif /* DEBUG */
-    history = 3; 
-    jump_out();
-//    return;     // can drop through now 99/Oct/20   
-  } 
+  help1(s);
+  succumb();
 }
 /* sec 0094 */
 void overflow_(char * s, integer n)
 {
-  normalize_selector ();
-  print_err("TeX capacity exceeded, sorry[");
-  print_string(s); 
+  normalize_selector();
+  print_err("TeX capacity exceeded, sorry [");
+  print_string(s);
   print_char('=');
-  print_int(n); 
+  print_int(n);
   print_char(']');
   help2("If you really absolutely need more capacity,",
-      "you can ask a wizard to enlarge me."); 
-  if (! knuth_flag) {   /*  Additional comments 98/Jan/5 */
-    if (!strcmp(s, "pattern memory") && n == trie_size) {
+      "you can ask a wizard to enlarge me.");
+
+  if (!knuth_flag)
+  {
+    if (!strcmp(s, "pattern memory") && (n == trie_size))
+    {
       sprintf(log_line, "\n  (Maybe use -h=... on command line in ini-TeX)\n");
       show_line(log_line, 0);
-    } else if (!strcmp(s, "exception dictionary") && n == hyphen_prime) {
+    }
+    else if (!strcmp(s, "exception dictionary") && (n == hyphen_prime))
+    {
       sprintf(log_line, "\n  (Maybe use -e=... on command line in ini-TeX)\n");
       show_line(log_line, 0);
     }
   }
-  if (interaction == 3)
-    interaction = 2;
-  if (log_opened) {
-    error ();
-  }
-  ;
-#ifdef DEBUG
-  if (interaction > 0)
-    debug_help ();
-#endif
-  history = 3;
-  jump_out();
+
+  succumb();
 }
 /* sec 0095 */
-void confusion_(str_number s)
+void confusion_(const char * s)
 {
-  normalize_selector (); 
-  if (history < 2) {
-    print_err("This can't happen(");
-    print(s); 
-    print_char(41); /*)*/
+  normalize_selector();
+
+  if (history < error_message_issued)
+  {
+    print_err("This can't happen (");
+    print_string(s);
+    print_char(')');
     help1("I'm broken. Please show this to someone who can fix can fix");
-  } else {
+  }
+  else
+  {
     print_err("I can't go on meeting you like this");
     help2("One of your faux pas seems to have wounded me deeply...",
         "in fact, I'm barely conscious. Please fix it and try again.");
   }
-  {
-    if (interaction == 3)
-      interaction = 2;
-    if (log_opened) {
-      error();
-    }
-    ;
-#ifdef DEBUG
-    if (interaction > 0)
-      debug_help();
-#endif
-    history = 3;
-    jump_out();
-  }
+
+  succumb();
 }
 /* sec 0037 */
-bool init_terminal (void) 
-{/* 10 */
-  register bool Result; 
+boolean init_terminal (void)
+{
   int flag;
-  t_open_in(); 
-
-  if (last > first) {
-    cur_input.loc_field = first; 
-    while((cur_input.loc_field < last) && (buffer[cur_input.loc_field]== ' '))
-      incr(cur_input.loc_field);    // step over initial white space
-    if(cur_input.loc_field < last){
-      Result = true; 
-      return Result;    // there is an input file name
-    } 
-  } 
-
-//  failed to find input file name
-  while(true){
-    ; 
-#ifdef _WINDOWS
-    flag = ConsoleInput("**", "Please type a file name or a control sequence\r\n(or ^z to exit)", (char *) &buffer[first]);
-    last = first + strlen((char *) &buffer[first]); /* -1 ? */
-//    may need to be more elaborate see input_line in texmf.c
-#else
-    (void) fputs("**", stdout);
-    fflush(stdout); 
+
+  t_open_in();
+
+  if (last > first)
+  {
+    loc = first;
+
+    while ((loc < last) && (buffer[loc]== ' '))
+      incr(loc);    // step over initial white space
+
+    if (loc < last)
+      return true;
+  }
+
+// failed to find input file name
+  while (true)
+  {
+    fputs("**", stdout);
+    update_terminal();
     flag = input_ln(stdin, true);
-#endif
-    if(! flag){
+
+    if (!flag)
+    {
       show_char('\n');
-      show_line("! End of file on the terminal... why?\n", 1);
-      Result = false;
-      return Result;
+      puts("! End of file on the terminal... why?\n");
+      return false;
     }
 
-    cur_input.loc_field = first;
-    while ((cur_input.loc_field < last) && (buffer[cur_input.loc_field]== ' '))
-      incr(cur_input.loc_field);    // step over intial white space
-    if (cur_input.loc_field < last) {
-      Result = true;
-      return Result;    // there is an input file name
-    } 
+    loc = first;
+
+    while ((loc < last) && (buffer[loc]== ' '))
+      incr(loc);    // step over intial white space
+
+    if (loc < last)
+      return true;
+
     sprintf(log_line, "%s\n", "Please type the name of your input file.");
     show_line(log_line, 1);
   }
 }
 /* sec 0043 */
-// Make string from str_start[str_ptr]to pool_ptr
 str_number make_string (void)
 {
-  register str_number Result; 
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 #ifdef ALLOCATESTRING
   if (str_ptr == current_max_strings)
     str_start = realloc_str_start(increment_max_strings);
-  if (str_ptr == current_max_strings) {
-//  printf("**********MAKESTRING**********");   // debugging only
+
+  if (str_ptr == current_max_strings)
+  {
     overflow("number of strings", current_max_strings - init_str_ptr); /* 97/Mar/9 */
-    return 0;     // abort_flag set
+    return 0;
   }
 #else
-  if (str_ptr == max_strings) {
-    overflow("number of strings", max_strings - init_str_ptr); /* number of strings */
-    return 0;     // abort_flag set
+  if (str_ptr == max_strings)
+  {
+    overflow("number of strings", max_strings - init_str_ptr);
+    return 0;
   }
 #endif
-  incr(str_ptr); 
+
+  incr(str_ptr);
   str_start[str_ptr] = pool_ptr;
-  Result = str_ptr - 1;
-  return Result;
-} 
+
+  return (str_ptr - 1);
+}
 /* sec 0044 */
-bool str_eq_buf_ (str_number s, integer k)
+boolean str_eq_buf_ (str_number s, integer k)
 {
-  register bool Result;
   pool_pointer j;
-  bool result;
+  boolean result;
+
   j = str_start[s];
-  while (j < str_start[s + 1]) {
-    if (str_pool[j]!= buffer[k])
+
+  while (j < str_start[s + 1])
+  {
+    if (str_pool[j] != buffer[k])
     {
       result = false;
-      goto lab45;
-    } 
+      goto not_found;
+    }
+
     incr(j);
     incr(k);
-  } 
+  }
+
   result = true;
-lab45: Result = result;
-  return Result; 
-} 
+
+not_found:
+  return result;
+}
 /* sec 0045 */
-bool str_eq_str_ (str_number s, str_number t)
+boolean str_eq_str_ (str_number s, str_number t)
 {
-  register bool Result;
   pool_pointer j, k;
-  bool result;
+  boolean result;
+
   result = false;
-  if ((str_start[s + 1] - str_start[s]) != (str_start[t + 1] - str_start[t]))
-    goto lab45;
+
+  if (length(s) != length(t))
+    goto not_found;
+
   j = str_start[s];
   k = str_start[t];
-  while (j < str_start[s + 1]) {
+
+  while (j < str_start[s + 1])
+  {
     if (str_pool[j] != str_pool[k])
-      goto lab45;
+      goto not_found;
+
     incr(j);
     incr(k);
   }
+
   result = true;
-  lab45: Result = result;
-  return Result;
+
+not_found:
+  return result;
 }
 /* sec 0066 */
 void print_two_(integer n)
@@ -803,13 +838,18 @@ void print_two_(integer n)
 void print_hex_(integer n)
 {
   char k;
+
   k = 0;
   print_char('"');
-  do {
-    dig[k] = (unsigned char) (n % 16);
-    n = n / 16;
-    incr(k);
-  } while (!(n == 0));
+
+  do
+    {
+      dig[k] = (unsigned char) (n % 16);
+      n = n / 16;
+      incr(k);
+    }
+  while (!(n == 0));
+
   print_the_digs(k);
 }
 /* sec 0069 */
@@ -817,29 +857,39 @@ void print_roman_int_(integer n)
 {
   pool_pointer j, k;
   nonnegative_integer u, v;
+
   j = str_start[260]; /*  m2d5c2l5x2v5i */
   v = 1000;
-  while (true) {
-    while (n >= v) {
+
+  while (true)
+  {
+    while (n >= v)
+    {
       print_char(str_pool[j]);
       n = n - v;
-    } 
+    }
+
     if (n <= 0)
       return;
+
     k = j + 2;
-    u = v / (str_pool[k - 1]- 48);
-    if (str_pool[k - 1]== 50)
+    u = v / (str_pool[k - 1] - '0');
+
+    if (str_pool[k - 1] == 50)
     {
       k = k + 2;
-      u = u / (str_pool[k - 1]- 48);
+      u = u / (str_pool[k - 1] - '0');
     }
+
     if (n + u >= v)
     {
       print_char(str_pool[k]);
       n = n + u;
-    } else {
+    }
+    else
+    {
       j = j + 2;
-      v = v / (str_pool[j - 1]- 48);
+      v = v / (str_pool[j - 1] - '0');
     }
   }
 }
@@ -847,172 +897,43 @@ void print_roman_int_(integer n)
 void print_current_string (void)
 {
   pool_pointer j;
+
   j = str_start[str_ptr];
-  while (j < pool_ptr) {
+
+  while (j < pool_ptr)
+  {
     print_char(str_pool[j]);
     incr(j);
   }
 }
 
-int stringlength (int str_ptr)
-{
-  int nstart, nnext;
-  nstart = str_start[str_ptr];
-  nnext = str_start[str_ptr + 1];
-  return (nnext - nstart) + 2;
-}
-
-char * add_string (char *s, int str_ptr)
-{
-  int nstart, nnext, n;
-  nstart = str_start[str_ptr];
-  nnext = str_start[str_ptr + 1];
-  n = nnext - nstart;
-  memcpy(s, &str_pool[nstart], n);
-  s += n;
-  strcpy(s, "\r\n");
-  s += 2;
-  return s;
-}
-
-int addextrahelp=1;
-
-// make one long \r\n separated string out of help lines 
-// str_pool is packed_ASCII_code *
-
-char * make_up_help_string (int nhelplines)
-{
-  char * helpstring, *s;
-  int k, nlen=0;
-  
-//  get length of help for this specific message
-  for (k = nhelplines-1; k >= 0; k--) {
-    //nlen += stringlength(help_line[k]);
-    nlen += strlen(help_line[k]);
-  }
-  nlen += 2;    // for blank line separator
-  if (addextrahelp) {
-    nlen += stringlength(265);
-    nlen += stringlength(266);
-    nlen += stringlength(267);
-    if(base_ptr > 0)nlen += stringlength(268);
-    if(deletions_allowed)nlen += stringlength(269);
-    nlen += stringlength(270);
-  }
-  helpstring = (char *) malloc(nlen+1);
-  s = helpstring;
-  for (k = nhelplines-1; k >= 0; k--) {
-    s = add_string(s, help_line[k]);
-  }
-  if (addextrahelp) {
-    strcpy(s, "\r\n");
-    s += 2;
-    s = add_string(s, 265);    /* Type <return> to proceed, S to scroll future error messages, */
-    s = add_string(s, 266);    /* R to run without stopping, Q to run quietly, */
-    s = add_string(s, 267);    /* I to insert something,  */
-    if(base_ptr > 0)s = add_string(s, 268);  /*  E to edit your file,  */
-    if(deletions_allowed)s = add_string(s,  269);  /* 1 or ... or 9 to ignore the next 1 to 9 tokens of input, */
-    s = add_string(s, 270);    /* H for help, X to quit. */
-  }
-  return helpstring;
-}
-
-char * make_up_query_string (int promptstr)
-{
-  char *querystr;
-  int nstart, nnext, n;
-  char *s;
-  nstart = str_start[ promptstr];
-  nnext = str_start[ promptstr + 1];
-  n = nnext - nstart;
-  querystr = (char *) malloc(n + 1);
-  s = querystr;
-  memcpy(s, &str_pool[nstart], n);  
-  s += n;
-  *s = '\0';
-  return querystr;
-}
-
-// abort_flag set if input_line / ConsoleInput returns non-zero
-// should set interrupt instead ???
-// called from tex0.c, tex2.c, tex3.c
-
-// void term_input(void)
-void term_input (int promptstr, int nhelplines)
+/* sec 0071 */
+void term_input(void)
 { 
   integer k;
   int flag;
-  char * helpstring = NULL;
-  char * querystring = NULL;
-//  if (nhelplines != 0) {
-//    helpstring = make_up_help_string (nhelplines);
-//    printf(helpstring);
-//    free(helpstring);
-//  }
-  show_line("\n", 0);    // force it to show what may be buffered up ???
-  helpstring = NULL;  
-#ifdef _WINDOWS
-  if (promptstr != 0) querystring = make_up_query_string (promptstr);
-  if (nhelplines != 0) helpstring = make_up_help_string (nhelplines);
-  if (helpstring == NULL && querystring != NULL) {
-    if (strcmp(querystring, ": ") == 0)
-      helpstring = xstrdup("Please type another file name (or ^z to exit):");
-    else if (strcmp(querystring, "=>") == 0)    // from firm_up_the_line
-      helpstring = xstrdup("Please type <enter> to accept this line\r\nor type a replacement line");
-    else if (strcmp(querystring, "insert>") == 0) // from error() after "I"
-      helpstring = xstrdup("Please type something to insert here");
-    else if (strcmp(querystring, "") == 0)      // from read_toks
-      helpstring = xstrdup("Please type a control sequence");
-    else if (strcmp(querystring, "= ") == 0)    // from read_toks
-      helpstring = xstrdup("Please type a token");
-    else if (strcmp(querystring, "*") == 0)   // get_next
-      helpstring = xstrdup("Please type a control sequence\r\n(or ^z to exit)");
-//    else if (strcmp(querystring, "**") == 0)  // init_terminal
-//      helpstring = xstrdup("Please type a control sequence or a file name\r\n(or ^z to exit)");     
-//    else if (strcmp(querystring, "? ") == 0)  // from error()
-//      helpstring = xstrdup("Please type a character to select an action");
-  }
-  flag = ConsoleInput(querystring, helpstring, (char *) &buffer[first]);  // ???
-//  flag == 0 means trouble --- EOF on terminal
-  if (querystring != NULL) free(querystring);
-  if (helpstring != NULL) free(helpstring);
-  helpstring = querystring = NULL;
-
-  last = first + strlen((char *) &buffer[first]); /* -1 ? */
-//  flag = (last > first);
-//  may need to be more elaborate see input_line in texmf.c ???
-//  sprintf(log_line, "first %d last %d flag %d - %s",
-//      first, last, flag, (char *) &buffer[first]);
-//  winerror(log_line);
-#else
-  fflush(stdout); 
+  
+  if (!knuth_flag)
+    show_line("\n", 0);
+
+  update_terminal();
   flag = input_ln(stdin, true);
-#endif
-  if(! flag){
-    fatal_error("End of file on the terminal!"); /*  */
-    return;         // abort_flag set
+
+  if (!flag)
+  {
+    fatal_error("End of file on the terminal!");
+    return;
   }
-  term_offset = 0; 
-#ifdef _WINDOWS
-// echo what was typed into Console buffer also
-  if(last != first)
-    {register integer for_end; k = first; for_end = last - 1;
-  if(k <=  for_end) do
-    print(buffer[k]); 
-  while(k++ < for_end);
-    } 
-  print_ln (); 
-#else
+
+  term_offset = 0;
   decr(selector);     // shut off echo
-  if(last != first)
-    {register integer for_end; k = first; for_end = last - 1;
-  if(k <=  for_end) do
-    print(buffer[k]); 
-  while(k++ < for_end);
-    } 
-  print_ln (); 
+
+  if (last != first)
+    for (k = first; k <= last - 1; k++)
+      print(buffer[k]);
+
+  print_ln();
   incr(selector);     // reset selector again
-#endif
 }
 /* sec 0091 */
 void int_error_ (integer n)
@@ -1026,27 +947,32 @@ void int_error_ (integer n)
 void normalize_selector (void)
 {
   if (log_opened)
-    selector = 19;
+    selector = term_and_log;
   else
-    selector = 17;
+    selector = term_only;
+
   if (job_name == 0)
     open_log_file();
-  if (interaction == 0)
+
+  if (interaction == batch_mode)
     decr(selector);
 }
 /* sec 0098 */
 void pause_for_instructions (void)
 {
-   if (OK_to_interrupt) {
-    interaction = 3;
-    if ((selector == 18)||(selector == 16))
+   if (OK_to_interrupt)
+   {
+    interaction = error_stop_mode;
+
+    if ((selector == log_only) || (selector == no_print))
       incr(selector);
+
     print_err("Interruption");
     help3("You rang?",
         "Try to insert some instructions for me (e.g.,`I\\showlists'),",
         "unless you just want to quit by typing `X'.");
     deletions_allowed = false;
-    error ();
+    error();
     deletions_allowed = true;
     interrupt = 0;
   }
@@ -1054,154 +980,174 @@ void pause_for_instructions (void)
 /* sec 0100 */
 integer half_(integer x)
 {
-  register integer Result;
   if (odd(x))
-  Result =(x + 1)/ 2;
-  else Result = x / 2;
-  return Result;
+    return ((x + 1) / 2);
+  else
+    return (x / 2);
 }
 /* sec 0102 */
 scaled round_decimals_(small_number k)
 {
-  register scaled Result;
   integer a;
+
   a = 0;
-  while (k > 0) {
+
+  while (k > 0)
+  {
     decr(k);
-    a = (a + dig[k]* 131072L) / 10; /* 2^17 */
+    a = (a + dig[k] * 131072L) / 10; /* 2^17 */
   }
-  Result =(a + 1)/ 2;
-  return Result;
+  
+  return ((a + 1) / 2);
 }
 /* sec 0103 */
-/* This has some minor speedup changes - no real advantage probably ... */
 void print_scaled_(scaled s)
-{ 
+{
   scaled delta;
+
   if (s < 0)
   {
     print_char('-');
     s = - (integer) s;
   }
+
   print_int(s / 65536L);
   print_char('.');
   s = 10 * (s % 65536L) + 5;
   delta = 10;
-  do {
-    if (delta > 65536L)
-      s = s - 17232; /* 2^15 - 50000 - rounding */
-    print_char('0' + (s / 65536L));
-    s = 10 * (s % 65536L);
-    delta = delta * 10;
-  } while (!(s <= delta));
+
+  do
+    {
+      if (delta > 65536L)
+        s = s - 17232; /* 2^15 - 50000 - rounding */
+
+      print_char('0' + (s / 65536L));
+      s = 10 * (s % 65536L);
+      delta = delta * 10;
+    }
+  while (!(s <= delta));
 }
 /* sec 0105 */
 scaled mult_and_add_(integer n, scaled x, scaled y, scaled maxanswer)
 {
-  register scaled Result;
   if (n < 0)
   {
     x = - (integer) x;
     n = - (integer) n;
   }
+
   if (n == 0)
-    Result = y;
-  else if(((x <= (maxanswer - y) / n) && (- (integer) x <= (maxanswer + y) / n)))
-    Result = n * x + y; 
-  else {
+    return y;
+  else if (((x <= (maxanswer - y) / n) && (- (integer) x <= (maxanswer + y) / n)))
+    return (n * x + y); 
+  else
+  {
     arith_error = true;
-    Result = 0;
+    return 0;
   }
-  return Result;
 }
 /* sec 0106 */
 scaled x_over_n_(scaled x, integer n)
 {
   register scaled Result;
-  bool negative;
+  boolean negative;
+
   negative = false;
+
   if (n == 0)
   {
     arith_error = true;
     Result = 0;
     tex_remainder = x;
-  } else {
+  }
+  else
+  {
     if (n < 0)
     {
       x = - (integer) x;
       n = - (integer) n;
       negative = true;
     }
+
     if (x >= 0)
     {
       Result = x / n;
       tex_remainder = x % n;
-    } else {
+    }
+    else
+    {
       Result = - (integer) ((- (integer) x)/ n);
       tex_remainder = - (integer) ((- (integer) x)% n);
     }
   }
+
   if (negative)
     tex_remainder = - (integer) tex_remainder;
+
   return Result;
 }
 /* sec 0107 */
 scaled xn_over_d_(scaled x, integer n, integer d)
 {
   register scaled Result;
-  bool positive;
+  boolean positive;
   nonnegative_integer t, u, v;
+
   if (x >= 0)
     positive = true; 
-  else {
+  else
+  {
     x = - (integer) x;
     positive = false;
   }
-/*  t =(x % 32768L)* n;  */
-  t =(x & 32767L) * n;
-/*  u =(x / 32768L)* n +(t / 32768L);  */
-  u =(x >> 15) * n + (t >> 15); 
-/*  v =(u % d)* 32768L +(t % 32768L);  */
-  v =((u % d) << 15) + (t & 32767L); 
+
+  t = (x % 32767L) * n;
+  u = (x / 32768L) * n + (t / 32768L);
+  v = (u % d) * 32768L + (t % 32768L); 
+
   if (u / d >= 32768L)
     arith_error = true; 
-/*  else u = 32768L *(u / d)+(v / d);  */ 
-  else u =((u / d) << 15) + (v / d); 
+  else
+    u = 32768L * (u / d) + (v / d);
+
   if (positive)
   {
     Result = u;
     tex_remainder = v % d;
-  } else {
+  }
+  else
+  {
     Result = - (integer) u;
     tex_remainder = - (integer)(v % d);
   }
+
   return Result;
 }
 /* sec 0108 */
 halfword badness_(scaled t, scaled s)
 {
-  register halfword Result;
   integer r;
+
   if (t == 0)
-    Result = 0; 
+    return 0;
   else if (s <= 0)
-    Result = 10000; 
-  else {
+    return 10000;
+  else
+  {
     if (t <= 7230584L)
-      r = (t * 297) / s; 
+      r = (t * 297) / s;
     else if (s >= 1663497L)
       r = t / (s / 297);
     else
       r = t;
+
     if (r > 1290)
-      Result = 10000; 
-/*    safe to assume that r is positive ? */
-/*    else Result =(r * r * r + 131072L)/ 262144L;  */
-    else Result = (r * r * r + 131072L) >> 18;  /* 2^17 */
+      return 10000; 
+    else
+      return (r * r * r + 131072L) / 262144L;  /* 2^17 */
   }
-  return Result;
 }
-
+/* sec 0114 */
 #ifdef DEBUG
 void print_word_(memory_word w)
 { 
@@ -1210,14 +1156,14 @@ void print_word_(memory_word w)
   print_scaled(w.cint); 
   print_char(' ');
   print_scaled(round(65536L * w.gr));
-  print_ln ();
-  print_int(w.hh.v.LH);
+  print_ln();
+  print_int(w.hh.lh);
   print_char('=');
   print_int(w.hh.b0);
   print_char(':');
   print_int(w.hh.b1);
   print_char(';');
-  print_int(w.hh.v.RH);
+  print_int(w.hh.rh);
   print_char(' ');
   print_int(w.qqqq.b0); 
   print_char(':');
@@ -1228,21 +1174,21 @@ void print_word_(memory_word w)
   print_int(w.qqqq.b3);
 } 
 /* need this version only if SHORTFONTINFO defined */
-void zprintfword(fmemoryword w)
+void zprintfword(memory_word w)
 {
   print_int(w.cint);
   print_char(' ');
   print_scaled(w.cint);
   print_char(' ');
   print_scaled(round(65536L * w.gr));
-  print_ln ();
-  print_int(w.hh.v.LH);
+  print_ln();
+  print_int(w.hh.lh);
   print_char('=');
   print_int(w.hh.b0);
   print_char(':');
   print_int(w .hh.b1);
   print_char(';');
-  print_int(w.hh.v.RH);
+  print_int(w.hh.rh);
   print_char(' ');
   print_int(w.qqqq.b0);
   print_char(':');
@@ -1253,88 +1199,96 @@ void zprintfword(fmemoryword w)
   print_int(w.qqqq.b3);
 }
 #endif
-
+/* sec 0292 */
 void show_token_list_(integer p, integer q, integer l)
 {
   integer m, c;
-  ASCII_code matchchr;
+  ASCII_code match_chr;
   ASCII_code n;
-  matchchr = 35;
-  n = 48;
+
+  match_chr = '#';
+  n = '0';
   tally = 0;
-/* while (p<>null) and (tally<l) do l.6239 */
-  while ((p != 0) && (tally < l)) {
+
+  while ((p != 0) && (tally < l))
+  {
     if (p == q)
     {
       first_count = tally;
       trick_count = tally + 1 + error_line - half_error_line;
+
       if (trick_count < error_line)
         trick_count = error_line;
     }
+
     if ((p < hi_mem_min) || (p > mem_end))
     {
       print_esc("CLOBBERED.");
       return;
     }
-    if (mem[p].hh.v.LH >= 4095)
-      print_cs(mem[p].hh.v.LH - 4095);
-    else {
-      m = mem[p].hh.v.LH / 256;
-      c = mem[p].hh.v.LH % 256;
-      if (mem[p].hh.v.LH < 0)
+
+    if (info(p) >= cs_token_flag)
+      print_cs(info(p) - cs_token_flag);
+    else
+    {
+      m = info(p) / 256;
+      c = info(p) % 256;
+
+      if (info(p) < 0)
         print_esc("BAD.");
-      else
-        switch (m)
-        {
-          case 1:
-          case 2:
-          case 3:
-          case 4:
-          case 7:
-          case 8:
-          case 10:
-          case 11:
-          case 12:
-            print(c);
-            break;
-          case 6:
-            {
-              print(c);
-              print(c);
-            }
-            break;
-          case 5:
-            {
-              print(matchchr);
-              if (c <= 9)
-                print_char(c + '0');
-              else {
-                print_char('!');
-                return;
-              }
-            }
-            break;
-          case 13:
-            {
-              matchchr = (ASCII_code) c;
-              print(c);
-              incr(n);
-              print_char(n);
-              if (n > 57)
-                return;
-            }
-            break;
-          case 14:
-            print_string("->");
-            break;
-          default:
-            print_esc("BAD. ");
-            break;
-        }
+      else switch (m)
+      {
+        case left_brace:
+        case right_brace:
+        case math_shift:
+        case tab_mark:
+        case sup_mark:
+        case sub_mark:
+        case spacer:
+        case letter:
+        case other_char:
+          print(c);
+          break;
+        
+        case mac_param:
+          print(c);
+          print(c);
+          break;
+        
+        case out_param:
+          print(match_chr);
+          
+          if (c <= 9)
+            print_char(c + '0');
+          else
+          {
+            print_char('!');
+            return;
+          }
+          break;
+        
+        case match:
+          match_chr = (ASCII_code) c;
+          print(c);
+          incr(n);
+          print_char(n);
+          
+          if (n > '9')
+            return;
+          break;
+        
+        case end_match:
+          print_string("->");
+          break;
+        
+        default:
+          print_esc("BAD.");
+          break;
+      }
     }
-    p = mem[p].hh.v.RH; 
-  } 
-/* if p<>null then print_esc("ETC."); l.6244 */
+    p = link(p);
+  }
+
   if (p != 0)
     print_esc("ETC.");
 }
@@ -1342,40 +1296,37 @@ void show_token_list_(integer p, integer q, integer l)
 void runaway (void)
 {
   halfword p;
+
   if (scanner_status > 1)
   {
     print_nl("Runaway ");
+
     switch (scanner_status)
     {
-      case 2:
-        {
-          print_string("definition");
-          p = def_ref;
-        }
+      case defining:
+        print_string("definition");
+        p = def_ref;
         break;
-      case 3:
-        {
-          print_string("argument");
-          p = temp_head;
-        }
+
+      case matching:
+        print_string("argument");
+        p = temp_head;
         break;
-      case 4:
-        {
-          print_string("preamble");
-          p = hold_head;
-        }
+
+      case aligning:
+        print_string("preamble");
+        p = hold_head;
         break;
-      case 5:
-        {
-          print_string("text");
-          p = def_ref;
-        }
+
+      case absorbing:
+        print_string("text");
+        p = def_ref;
         break;
     }
+
     print_char('?');
-    print_ln ();
-/*  p may be used without being initialized -- OK */
-    show_token_list(mem[p].hh.v.RH, 0, error_line - 10); 
+    print_ln();
+    show_token_list(link(p), 0, error_line - 10); 
   }
 }
 /* sec 0120 */
@@ -1388,506 +1339,475 @@ void runaway (void)
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 halfword get_avail (void)
 {
-  register halfword Result;
-  halfword p;
+  pointer p;
+
   p = avail;
-  if (p != 0) /* while p<>null do */
+
+  if (p != 0)
     avail = link(avail);
-  else if (mem_end < mem_max) /* mem_end + 1 < mem_max ? NO */
+  else if (mem_end < mem_max)
   {
     incr(mem_end);
     p = mem_end;
-  } else {
+  }
+  else
+  {
     decr(hi_mem_min);
     p = hi_mem_min;
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-    if (hi_mem_min <= lo_mem_max) {   /* have we run out in middle ? */
-      incr(hi_mem_min);       /* undo the change */
-/*    realloc_main (0, mem_top/2); */ /* extend main memory at hi end */
+
+    if (hi_mem_min <= lo_mem_max) /* have we run out in middle ? */
+    {
+      incr(hi_mem_min);
       mem = realloc_main (0, mem_top / 2);  /* zzzaa = zmem = mem */
-      if (mem == NULL) {
+
+      if (mem == NULL)
+        return 0;
+
+      if (mem_end >= mem_max)
+      {
+        runaway();
+        overflow("main memory size", mem_max + 1 - mem_min);
         return 0;
       }
-/* presumably now mem_end < mem_max - but need test in case allocation fails */
-      if (mem_end >= mem_max) {
-        runaway ();
-        overflow("main memory size", mem_max + 1 - mem_min); /* main memory size */
-        return 0;           // abort_flag set
-      }
+
       incr(mem_end);        /* then grab from new area */
       p = mem_end;          /* 1993/Dec/14 */
     }
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
   }
-  mem[p].hh.v.RH = 0;       /* link(p) = null !!! */
-  ;
+
+  link(p) = 0;       /* link(p) = null !!! */
+
 #ifdef STAT
   incr(dyn_used); 
 #endif /* STAT */
-  Result = p; 
-  return Result
+
+  return p
 } 
 /* sec 0123 */
-void flush_list_(halfword p)          /* paragraph 123 */
+void flush_list_(pointer p)
 { 
-  halfword q, r; 
+  pointer q, r;
+
   if (p != 0)              /* null !!! */
   {
     r = p;
-    do {
-      q = r;
-      r = link(r);
-      ;
+
+    do
+      {
+        q = r;
+        r = link(r);
 #ifdef STAT
-      decr(dyn_used);
+        decr(dyn_used);
 #endif /* STAT */
-    } while (!(r == 0));     /* r != null */
+      }
+    while (!(r == 0));     /* r != null */
+
     link(q) = avail;
     avail = p;
   }
 }
 /* sec 0125 */
-halfword get_node_(integer s)
+pointer get_node_(integer s)
 {
-  register halfword Result;
-  halfword p;
-  halfword q;
+  pointer p;
+  pointer q;
   integer r;
   integer t;
-lab20: p = rover;
-  do {
-      q = p + mem[p].hh.v.LH;
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-/*    while((mem[q].hh.v.RH == 262143L)) { */ /* NO! */
-      while ((mem[q].hh.v.RH == empty_flag)) {
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-        if (q == 0) {
-/* should never happen, since this field is reference count for zeroglue */
-        }  /* debugging code 93/DEC/15 */ /* eventually remove */
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-        t = mem[q + 1].hh.v.RH;
+restart:
+
+  p = rover;
+
+  do
+    {
+      q = p + node_size(p);
+
+      while ((mem[q].hh.rh == empty_flag))
+      {
+        t = rlink(q);
+
         if (q == rover)
           rover = t;
-        mem[t + 1].hh.v.LH = mem[q + 1].hh.v.LH;
-        mem[mem[q + 1].hh.v.LH + 1].hh.v.RH = t;
-        q = q + mem[q].hh.v.LH;
+
+        llink(t) = llink(q);
+        rlink(llink(q)) = t;
+        q = q + node_size(q);
       }
+
       r = q - s;
+
       if (r > toint(p + 1)) 
       {
-        mem[p].hh.v.LH = r - p;
+        node_size(p) = r - p;
         rover = p;
-        goto lab40;
+        goto found;
       }
+
       if (r == p)
-        if (mem[p + 1].hh.v.RH != p)
+        if (rlink(p) != p)
         {
-          rover = mem[p + 1].hh.v.RH;
-          t = mem[p + 1].hh.v.LH;
-          mem[rover + 1].hh.v.LH = t;
-          mem[t + 1].hh.v.RH = rover;
-          goto lab40;
+          rover = rlink(p);
+          t = llink(p);
+          llink(rover) = t;
+          rlink(t) = rover;
+          goto found;
         }
-      mem[p].hh.v.LH = q - p;
-      p = mem[p + 1].hh.v.RH;
-  } while (!(p == rover));
+
+      node_size(p) = q - p;
+      p = rlink(p);
+    }
+  while (!(p == rover));
+
   if (s == 1073741824L)    /* 2^30 - special case - merge adjacent */
   {
-    Result = empty_flag;
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
     if (trace_flag)
-      show_line("Merged adjacent multi-word nodes\n", 0);
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-    return Result;
+      puts("Merged adjacent multi-word nodes\n");
+
+    return max_halfword;
   }
+
 /*  maybe try downward epxansion first instead ? */
   if (lo_mem_max + 2 < hi_mem_min)
-/*  if(lo_mem_max + 2 <= 262143L) */  /* NO! */
-    if(lo_mem_max + 2 <= mem_bot + max_halfword)  /* silly ? flush 93/Dec/16 */
+    if (lo_mem_max + 2 <= mem_bot + max_halfword)  /* silly ? flush 93/Dec/16 */
     {
-/*    if(hi_mem_min - lo_mem_max >= 1998) */
+      /* if (hi_mem_min - lo_mem_max >= 1998) */
       if (hi_mem_min - lo_mem_max >= (block_size + block_size - 2))
-/*    t = lo_mem_max + 1000;  */
+        /* t = lo_mem_max + 1000; */
         t = lo_mem_max + block_size;
       else
-        t = lo_mem_max + 1 +(hi_mem_min - lo_mem_max) / 2;
-      p = mem[rover + 1].hh.v.LH;
+        t = lo_mem_max + 1 + (hi_mem_min - lo_mem_max) / 2;
+
+      p = llink(rover);
       q = lo_mem_max;
-      mem[p + 1].hh.v.RH = q;
-      mem[rover + 1].hh.v.LH = q;
-/*    if(t > 262143L)   t = 262143L;  */ /* NO! */
+      rlink(p) = q;
+      llink(rover) = q;
+
       if (t > mem_bot + max_halfword)
         t = mem_bot + max_halfword;     /* silly ? flush 93/Dec/16 */
-      mem[q + 1].hh.v.RH = rover;
-      mem[q + 1].hh.v.LH = p;
-      mem[q].hh.v.RH = empty_flag;
-      mem[q].hh.v.LH = t - lo_mem_max; /* block size */
+
+      rlink(q) = rover;
+      llink(q) = p;
+      link(q) = empty_flag;
+      node_size(q) = t - lo_mem_max; /* block size */
       lo_mem_max = t;
-      mem[lo_mem_max].hh.v.RH = 0;
-      mem[lo_mem_max].hh.v.LH = 0;
+      link(lo_mem_max) = 0;
+      info(lo_mem_max) = 0;
       rover = q;
-      goto lab20;
+      goto restart;
     }
-/*  overflow("main memory size", mem_max + 1 - mem_min);  */ /* what used to happen! */
+
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 /* we've run out of space in the middle for variable length blocks */
 /* try and add new block from below mem_bot *//* first check if space ! */
-  if (mem_min - (block_size + 1) <= mem_start) {/* extend lower memory downwards */
-/*    realloc_main (mem_top/2, 0); */
+  if (mem_min - (block_size + 1) <= mem_start) /* extend lower memory downwards */
+  {
     mem = realloc_main (mem_top/2 + block_size, 0);  /* zzzaa = zmem = mem */
-    if (mem == NULL) {
+
+    if (mem == NULL)
+    {
       return 0;
     }
   }
-/*  if (trace_flag) show_line("Extending downwards by %d\n", block_size, 0); */
-  if (mem_min - (block_size + 1) <= mem_start) { /* check again */
-    if (trace_flag) {
+
+  if (mem_min - (block_size + 1) <= mem_start) /* check again */
+  {
+    if (trace_flag)
+    {
       sprintf(log_line, "mem_min %d, mem_start %d, block_size %d\n", mem_min, mem_start, block_size);
       show_line(log_line, 0);
     }
+
     overflow("main memory size", mem_max + 1 - mem_min); /* darn: allocation failed ! */
-    return 0;     // abort_flag set
+    return 0;
   }
-/* avoid function call in following ? */
+
   add_variable_space (block_size); /* now to be found in itex.c */
-  goto lab20;         /* go try get_node again */
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
+  goto restart;         /* go try get_node again */
+
+found:
+  link(r) = 0;
 
-  lab40: mem[r].hh.v.RH = 0; 
-  ;
 #ifdef STAT
   var_used = var_used + s; 
 #endif /* STAT */
 
-/*  if (trace_flag) {
-    if (r == 0) show_line("r IS ZERO in ZGETNODE!\n", 0);
-  } */      /* debugging code 93/dec/15 */
-
-  Result = r; 
-  return Result; 
+  return r; 
 } 
-
+/* sec 0130 */
 void free_node_(halfword p, halfword s)
 { 
-  halfword q;
-  mem[p].hh.v.LH = s;
-  mem[p].hh.v.RH = empty_flag;
-  q = mem[rover + 1].hh.v.LH;
-  mem[p + 1].hh.v.LH = q;
-  mem[p + 1].hh.v.RH = rover;
-  mem[rover + 1].hh.v.LH = p;
-  mem[q + 1].hh.v.RH = p;
-  ;
+  pointer q;
+
+  node_size(p) = s;
+  link(p) = empty_flag;
+  q = llink(rover);
+  llink(p) = q;
+  rlink(p) = rover;
+  llink(rover) = p;
+  rlink(q) = p;
+
 #ifdef STAT
   var_used = var_used - s; 
 #endif /* STAT */
-} 
+}
+/* sec 0136 */
+pointer new_null_box (void) 
+{
+  pointer p;
 
-halfword new_null_box (void) 
-{
-  register halfword Result;
-  halfword p; 
-  p = get_node(7);
-  mem[p].hh.b0 = 0;
-  mem[p].hh.b1 = 0;
-  mem[p + 1].cint = 0;
-  mem[p + 2].cint = 0;
-  mem[p + 3].cint = 0;
-  mem[p + 4].cint = 0;
-  mem[p + 5].hh.v.RH = 0;
-  mem[p + 5].hh.b0 = 0;
-  mem[p + 5].hh.b1 = 0;
-  mem[p + 6].gr = 0.0;
-  Result = p;
-  return Result;
-} 
+  p = get_node(box_node_size);
+  type(p) = hlist_node;
+  subtype(p) = min_quarterword;
+  width(p) = 0;
+  depth(p) = 0;
+  height(p) = 0;
+  shift_amount(p) = 0;
+  list_ptr(p) = 0;
+  glue_sign(p) = normal;
+  glue_order(p) = normal;
+  glue_set(p) = 0.0;
 
-// @ A new rule node is delivered by the |new_rule| function. It
-//   makes all the dimensions ``running,'' so you have to change the
-//   ones that are not allowed to run.
-
-halfword new_rule (void) 
-{
-  register halfword Result;
-  halfword p; 
-  p = get_node(4);          /* rule_node_size */
-  mem[p].hh.b0 = 2;       /* rule_node type */
-  mem[p].hh.b1 = 0;       /* sub_type zero */
-  mem[p + 1].cint = -1073741824L; /* -2^30 null_flag width */
-  mem[p + 2].cint = -1073741824L; /* -2^30 null_flag depth */
-  mem[p + 3].cint = -1073741824L; /* -2^30 null_flag height */
-  Result = p; 
-  return Result; 
-} 
+  return p;
+}
+/* sec 0139 */
+pointer new_rule (void) 
+{
+  pointer p;
 
-// @ The |new_ligature| function creates a ligature node having given
-//   contents of the |font|, |character|, and |lig_ptr| fields.
-
-halfword new_ligature_(quarterword f, quarterword c, halfword q)
-{
-  register halfword Result; 
-  halfword p; 
-  p = get_node(2);      /* small_node_size */
-  mem[p].hh.b0 = 6;   /* ligature_node type */
-  mem[p + 1].hh.b0 = f; /* font */
-  mem[p + 1].hh.b1 = c; /* character */
-  mem[p + 1].hh.v.RH = q; /* pointer */
-  mem[p].hh.b1 = 0;   /* subtype zero */
-  Result = p; 
-  return Result; 
-} 
+  p = get_node(rule_node_size);
+  type(p) = rule_node;
+  subtype(p) = 0;
+  width(p) = null_flag;
+  depth(p) = null_flag;
+  height(p) = null_flag;
+
+  return p;
+}
+/* sec 0144 */
+pointer new_ligature_(quarterword f, quarterword c, pointer q)
+{
+  pointer p;
 
-//  We also have a |new_lig_item| function, which returns a two-word
-//  node having a given |character| field. Such nodes are used for
-//  temporary processing as ligatures are being created.
+  p = get_node(small_node_size);
+  type(p) = ligature_node;
+  font(lig_char(p)) = f;
+  character(lig_char(p)) = c;
+  lig_ptr(p) = q;
+  subtype(p) = 0;
 
-halfword new_lig_item_(quarterword c)
+  return p;
+}
+/* sec 0144 */
+pointer new_lig_item_(quarterword c)
 {
-  register halfword Result;
-  halfword p; 
-  p = get_node(2);      /* small_node_size */
-  mem[p].hh.b1 = c;   /* character */ 
-  mem[p + 1].hh.v.RH = 0; /* lig_ptr(p):=null; */
-  Result = p; 
-  return Result; 
-} 
+  pointer p;
 
-halfword new_disc (void) 
-{
-  register halfword Result; 
-  halfword p; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 7; 
-  mem[p].hh.b1 = 0; 
-  mem[p + 1].hh.v.LH = 0; /* pre_break(p):=null; */
-  mem[p + 1].hh.v.RH = 0; /* post_break(p):=null; */
-  Result = p; 
-  return Result; 
-} 
+  p = get_node(small_node_size);
+  character(p) = c;
+  lig_ptr(p) = 0;
 
-halfword new_math_(scaled w, small_number s)
+  return p;
+}
+/* sec 0145 */
+pointer new_disc (void) 
 {
-  register halfword Result;
-  halfword p; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 9; 
-  mem[p].hh.b1 = s; 
-  mem[p + 1].cint = w; 
-  Result = p; 
-  return Result; 
-} 
+  pointer p;
 
-halfword new_spec_(halfword p)
-{
-  register halfword Result;
-  halfword q; 
-  q = get_node(4); 
-  mem[q]= mem[p]; 
-  mem[q].hh.v.RH = 0; 
-  mem[q + 1].cint = mem[p + 1].cint; 
-  mem[q + 2].cint = mem[p + 2].cint; 
-  mem[q + 3].cint = mem[p + 3].cint; 
-  Result = q; 
-  return Result; 
-} 
+  p = get_node(small_node_size);
+  type(p) = disc_node;
+  replace_count(p) = 0;
+  pre_break(p) = 0;
+  post_break(p) = 0;
 
-halfword new_param_glue_(small_number n)
-{
-  register halfword Result; 
-  halfword p; 
-  halfword q; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 10; 
-  mem[p].hh.b1 = n + 1; /* conversion int to unsigned short */
-  mem[p + 1].hh.v.RH = 0; 
-  q = eqtb[(hash_size + 782) + n].hh.v.RH; /* gluebase + n */
-  mem[p + 1].hh.v.LH = q; 
-  incr(mem[q].hh.v.RH); 
-  Result = p; 
-  return Result; 
-} 
+  return p;
+}
+/* sec 0147 */
+pointer new_math_(scaled w, small_number s)
+{
+  pointer p;
 
-halfword new_glue_(halfword q)
-{
-  register halfword Result; 
-  halfword p; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 10; 
-  mem[p].hh.b1 = 0; 
-  mem[p + 1].hh.v.RH = 0; 
-  mem[p + 1].hh.v.LH = q; 
-  incr(mem[q].hh.v.RH); 
-  Result = p; 
-  return Result; 
-} 
+  p = get_node(small_node_size);
+  type(p) = math_node;
+  subtype(p) = s;
+  width(p) = w;
+
+  return p;
+}
+/* sec 0151 */
+pointer new_spec_(pointer p)
+{
+  pointer q;
+
+  q = get_node(glue_spec_size);
+  mem[q] = mem[p];
+  glue_ref_count(q) = 0;
+  width(q) = width(p);
+  stretch(q) = stretch(p);
+  shrink(q) = shrink(p);
+
+  return q;
+}
+/* se 0152 */
+pointer new_param_glue_(small_number n)
+{
+  pointer p;
+  pointer q;
+
+  p = get_node(small_node_size);
+  type(p) = glue_node;
+  subtype(p) = n + 1;
+  leader_ptr(p) = 0;
+  q = glue_par(n);
+  glue_ptr(p) = q;
+  incr(glue_ref_count(q));
+
+  return p;
+}
+/* sec 0153 */
+pointer new_glue_(pointer q)
+{
+  pointer p;
 
-halfword new_skip_param_(small_number n)
+  p = get_node(small_node_size);
+  type(p) = glue_node;
+  subtype(p) = normal;
+  leader_ptr(p) = 0; 
+  glue_ptr(p) = q;
+  incr(glue_ref_count(q));
+
+  return p;
+}
+/* sec 0154 */
+pointer new_skip_param_(small_number n)
 {
-  register halfword Result; 
-  halfword p; 
-  temp_ptr = new_spec(eqtb[(hash_size + 782) + n].hh.v.RH); /* gluebase + n */
+  pointer p;
+
+  temp_ptr = new_spec(glue_par(n));
   p = new_glue(temp_ptr); 
-  mem[temp_ptr].hh.v.RH = 0; 
-  mem[p].hh.b1 = n + 1;   /* conversion int to unsigned short */
-  Result = p; 
-  return Result; 
-} 
+  glue_ref_count(temp_ptr) = 0;
+  subtype(p) = n + 1;
 
-halfword new_kern_(scaled w)
+  return p;
+}
+/* sec 0155 */
+pointer new_kern(scaled w)
 {
-  register halfword Result;
-  halfword p; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 11; 
-  mem[p].hh.b1 = 0; 
-  mem[p + 1].cint = w; 
-  Result = p; 
-  return Result; 
-} 
+  pointer p;
 
-halfword new_penalty_(integer m)
+  p = get_node(small_node_size);
+  type(p) = kern_node;
+  subtype(p) = normal;
+  width(p) = w;
+
+  return p;
+}
+/* sec 0158 */
+pointer new_penalty(integer m)
 {
-  register halfword Result; 
-  halfword p; 
-  p = get_node(2); 
-  mem[p].hh.b0 = 12; 
-  mem[p].hh.b1 = 0; 
-  mem[p + 1].cint = m; 
-  Result = p; 
-  return Result; 
-} 
+  pointer p;
+
+  p = get_node(small_node_size);
+  type(p) = penalty_node;
+  subtype(p) = 0;
+  penalty(p) = m;
+
+  return p;
+}
 
 #ifdef DEBUG
-void check_mem_(bool printlocs)
-{/* 31 32 */  
-  halfword p, q; 
-  bool clobbered; 
-  {
-    register integer for_end;
-    p = mem_min;
-    for_end = lo_mem_max;
-    if(p <= for_end) do 
-      freearr[p]= false;
-    while (p++ < for_end);
-  }
-  {
-    register integer for_end;
-    p = hi_mem_min;
-    for_end = mem_end;
-    if(p <= for_end) do
-      freearr[p]= false;
-    while (p++ < for_end);
-  }
+/* sec 0167 */
+void check_mem(boolean printlocs)
+{
+  pointer p, q;
+  boolean clobbered;
+
+  for (p = mem_min; p <= lo_mem_max; p++) freearr[p] = false;
+  for (p = hi_mem_min; p <= mem_end; p++) freearr[p] = false;
   p = avail;
   q = 0;
   clobbered = false;
-  while (p != 0) {    /* while p<>null do */
+  while (p != 0) {
     if ((p > mem_end) || (p < hi_mem_min))
       clobbered = true;
     else if (freearr[p])
       clobbered = true;
+
     if (clobbered)
     {
       print_nl("AVAIL list clobbered at ");
       print_int(q);
-      goto lab31;
+      goto done1;
     }
     freearr[p] = true;
     q = p;
-    p = mem[q].hh.v.RH;
+    p = link(q);
   }
-lab31:;
+done1:;
   p = rover;
-  q = 0;        /* q:=null */
+  q = 0;
   clobbered = false;
   do {
       if ((p >= lo_mem_max) || (p < mem_min))
         clobbered = true;
-      else if ((mem[p + 1].hh.v.RH >= lo_mem_max) || (mem[p + 1].hh.v.RH < mem_min))
+      else if ((rlink(p) >= lo_mem_max) || (rlink(p) < mem_min))
         clobbered = true;
-/*    else if(!((mem[p].hh.v.RH == 262143L)) ||(mem[p].hh *//*NO!*/
-    else if(!((mem[p].hh.v.RH == empty_flag)) ||
-        (mem[p].hh .v.LH < 2) || 
-        (p + mem[p].hh.v.LH > lo_mem_max) ||
-        (mem[mem[p + 1].hh.v.RH + 1].hh.v.LH != p))
-      clobbered = true;
-    if(clobbered)
-    {
-      print_nl("Double-AVAIL list clobbered at ");
-      print_int(q);
-      goto lab32;
-    } 
-    {
-      register integer for_end;
-      q = p;
-      for_end = p + mem[p].hh.v.LH - 1;
-      if (q <= for_end) do 
+      else if (!(is_empty(p)) || (node_size(p) < 2) ||
+          (p + node_size(p) > lo_mem_max) || (llink(rlink(p)) != p))
+        clobbered = true;
+      
+      if (clobbered)
+      {
+        print_nl("Double-AVAIL list clobbered at ");
+        print_int(q);
+        goto done2;
+      }
+
+      for (q = p; q <= p + node_size(p) - 1; q++)
       {
         if (freearr[q])
         {
           print_nl("Doubly free location at ");
           print_int(q);
-          goto lab32;
+          goto done2;
         }
         freearr[q]= true;
-      } while (q++ < for_end);
-    }
-    q = p;
-    p = mem[p + 1].hh.v.RH;
+      }
+      q = p;
+      p = rlink(p);
   } while (!(p == rover));
-lab32:;
+done2:;
   p = mem_min;
-  while (p <= lo_mem_max) {
-    if((mem[p].hh.v.RH == empty_flag)) 
-    {
-      print_nl("Bad flag at ");
-      print_int(p);
-    }
-    while ((p <= lo_mem_max) && !freearr[p]) incr(p);
-    while ((p <= lo_mem_max) && freearr[p]) incr(p);
-  }
-  if (printlocs)
-  {
-    print_nl("New busy locs:");
-    {
-      register integer for_end;
-      p = mem_min;
-      for_end = lo_mem_max;
-      if(p <= for_end) do
-        if (!freearr[p] && ((p > was_lo_max) || wasfree[p]))
-        {
-          print_char(' ');
-          print_int(p);
-        } while (p++ < for_end);
-    }
+  while (p <= lo_mem_max) {
+    if (is_empty(p))
     {
-      register integer for_end;
-      p = hi_mem_min;
-      for_end = mem_end;
-      if (p <= for_end) do
-        if (!freearr[p] && ((p < was_hi_min) || (p > was_mem_end) || wasfree[p]))
-        {
-          print_char(' ');
-          print_int(p);
-        } while (p++ < for_end);
+      print_nl("Bad flag at ");
+      print_int(p);
     }
-  } 
-  {
-    register integer for_end;
-    p = mem_min;
-    for_end = lo_mem_max;
-    if(p <= for_end) do
-      wasfree[p]= freearr[p];
-    while (p++ < for_end);
+    while ((p <= lo_mem_max) && !freearr[p]) incr(p);
+    while ((p <= lo_mem_max) && freearr[p]) incr(p);
   }
+
+  if (printlocs)
   {
-    register integer for_end;
-    p = hi_mem_min;
-    for_end = mem_end;
-    if(p <= for_end) do
-      wasfree[p] = freearr[p];
-    while (p++ < for_end);
+    print_nl("New busy locs:");
+
+    for (p = mem_min; p <= lo_mem_max; p++)
+      if (!freearr[p] && ((p > was_lo_max) || wasfree[p]))
+      {
+        print_char(' ');
+        print_int(p);
+      }
+
+    for (p = hi_mem_min; p <= mem_end; p++)
+      if (!freearr[p] && ((p < was_hi_min) || (p > was_mem_end) || wasfree[p]))
+      {
+        print_char(' ');
+        print_int(p);
+      }
   }
+
+  for (p = mem_min; p <= lo_mem_max; p++) wasfree[p] = freearr[p];
+  for (p = hi_mem_min; p <= mem_end; p++) wasfree[p] = freearr[p];
+
   was_mem_end = mem_end;
   was_lo_max = lo_mem_max;
   was_hi_min = hi_mem_min;
@@ -1895,289 +1815,286 @@ lab32:;
 #endif /* DEBUG */
 
 #ifdef DEBUG
+/* sec 0172 */
 void search_mem_(halfword p)
 {
-  integer q; 
+  integer q;
+
+  for (q = mem_min; q <= lo_mem_max; q++)
   {
-    register integer for_end;
-    q = mem_min;
-    for_end = lo_mem_max;
-    if(q <= for_end) do
+    if (link(q) == p)
     {
-      if (link(q) == p)
-      {
-        print_nl("LINK(");
-        print_int(q);
-        print_char(')');
-      }
-      if (info(q) == p)
-      {
-        print_nl("INFO(");
-        print_int(q);
-        print_char(')');
-      }
-    } while (q++ < for_end);
-  }
-  {
-    register integer for_end;
-    q = hi_mem_min;
-    for_end = mem_end;
-    if (q <= for_end) do
+      print_nl("LINK(");
+      print_int(q);
+      print_char(')');
+    }
+    if (info(q) == p)
     {
-      if(link(q) == p)
-      {
-        print_nl("LINK(");
-        print_int(q);
-        print_char(')');
-      }
-      if (info(q) == p)
-      {
-        print_nl("INFO(");
-        print_int(q);
-        print_char(')');
-      }
-    } while (q++ < for_end);
+      print_nl("INFO(");
+      print_int(q);
+      print_char(')');
+    }
   }
+
+  for (q = hi_mem_min; q <= mem_end; q++)
   {
-    register integer for_end;
-    q = 1;
-    for_end = (hash_size + 1833);
-    if (q <= for_end) do
+    if (link(q) == p)
     {
-      if(eqtb[q].hh.v.RH == p)
-      {
-        print_nl("EQUIV(");
-        print_int(q);
-        print_char(')');
-      }
-    } while(q++ < for_end);
+      print_nl("LINK(");
+      print_int(q);
+      print_char(')');
+    }
+    if (info(q) == p)
+    {
+      print_nl("INFO(");
+      print_int(q);
+      print_char(')');
+    }
   }
+
+  for (q = active_base; q <= box_base + 255; q++)
+    if (equiv(q) == p)
+    {
+      print_nl("EQUIV(");
+      print_int(q);
+      print_char(')');
+    }
+
   if (save_ptr > 0)
-  {
-    register integer for_end;
-    q = 0;
-    for_end = save_ptr - 1;
-    if(q <= for_end) do 
+    for (q = 0; q <= save_ptr - 1; q++)
     {
-      if (save_stack[q].hh.v.RH == p)
+      if (equiv_field(save_stack[q]) == p)
       {
         print_nl("SAVE(");
         print_int(q);
-        print_char(41);
-      }
-    } while (q++ < for_end);
-  }
-/*  {register integer for_end; q = 0; for_end = 607; if(q <= for_end) do */
-  {
-    register integer for_end;
-    q = 0;
-    for_end = hyphen_prime;
-    if (q <= for_end) do 
-    {
-      if (hyph_list[q]== p)
-      {
-        print_nl("HYPH(");
-        print_int(q);
         print_char(')');
       }
-    } while(q++ < for_end);
-  }
+    }
+
+  for (q = 0; q <= hyphen_prime; q++)
+    if (hyph_list[q] == p)
+    {
+      print_nl("HYPH(");
+      print_int(q);
+      print_char(')');
+    }
 }
 #endif /* DEBUG */
-
+/* sec 0174 */
 void short_display_(integer p)
 {
   integer n; 
-/*  while(p > mem_min){ */
-  while (p != 0) {      /* want p != null here bkph 93/Dec/15 !!! */
-                /* NOTE: still not fixed in 3.14159 ! */
-     if ((p >= hi_mem_min))  /* is_char_node(p) */
+
+  while (p != 0) /* want p != null here ! */
+  {
+     if (is_char_node(p))
      {
        if (p <= mem_end)
        {
-         if (mem[p].hh.b0 != font_in_short_display) /* font(p) */
+         if (font(p) != font_in_short_display)
          {
-           if ((mem[p].hh.b0 > font_max)) 
+           if ((font(p) > font_max))
              print_char('*');
-/*    else print_esc(hash[(hash_size + 524) + mem[p].hh.b0].v.RH); */
-           else //print_esc(hash[(hash_size + hash_extra + 524) + mem[p].hh.b0].v.RH);
-           {print_esc("");print(hash[(hash_size + hash_extra + 524) + mem[p].hh.b0].v.RH);}
-/* 96/Jan/10 */
+           else
+           {
+             print_esc("");
+             print(font_id_text(font(p)));
+           }
+
            print_char(' ');
-           font_in_short_display = mem[p].hh.b0;
+           font_in_short_display = font(p);
          }
-         print(mem[p].hh.b1);          /* character(p) */
+         print(character(p));
        }
-    } else switch (mem[p].hh.b0)
-    {
-      case 0:
-      case 1:
-      case 3:
-      case 8:
-      case 4:
-      case 5:
-      case 13:
+     }
+     else switch (mem[p].hh.b0)
+     {
+      case hlist_node:
+      case vlist_node:
+      case ins_node:
+      case whatsit_node:
+      case mark_node:
+      case adjust_node:
+      case unset_node:
         print_string("[]");
         break;
-      case 2:
+      case rule_node:
         print_char('|');
         break;
-      case 10:
-        if (mem[p + 1].hh.v.LH != 0)
+      case glue_node:
+        if (glue_ptr(p) != 0)
           print_char(' ');
         break;
-      case 9:
+      case math_node:
         print_char('$');
         break;
-      case 6:
-        short_display(mem[p + 1].hh.v.RH);
+      case ligature_node:
+        short_display(lig_ptr(p));
         break;
-      case 7:
+      case disc_node:
+        short_display(pre_break(p));
+        short_display(post_break(p));
+        n = replace_count(p);
+
+        while (n > 0)
         {
-          short_display(mem[p + 1].hh.v.LH);
-          short_display(mem[p + 1].hh.v.RH);
-          n = mem[p].hh.b1;
-          while (n > 0) {
-            if(link(p) != 0) /* if link(p)<>null then */
-              p = mem[p].hh.v.RH;
-            decr(n);
-          }
+          if (link(p) != 0)
+            p = link(p);
+
+          decr(n);
         }
         break;
       default:
-        ;
         break;
     }
-    p = mem[p].hh.v.RH;
+    p = link(p);
   }
 }
-
-void print_font_and_char_ (integer p)
+/* sec 0176 */
+void print_font_and_char (integer p)
 {
   if (p > mem_end)
     print_esc("CLOBBERED.");
-  else {
-    if((mem[p].hh.b0 > font_max)) /* font(p) */
-      print_char(42);   /* * */
-/*    else print_esc(hash[(hash_size + 524) + mem[p].hh.b0].v.RH); */
+  else
+  {
+    if ((font(p) > font_max))
+      print_char('*');
     else
-      //print_esc(hash[(hash_size + hash_extra + 524) + mem[p].hh.b0].v.RH); /* 96/Jan/10 */
-      {print_esc("");print(hash[(hash_size + hash_extra + 524) + mem[p].hh.b0].v.RH);}
-    print_char(' ');
-    print(mem[p].hh.b1);      /* character(p) */
-  } 
-} 
+    {
+      print_esc("");
+      print(font_id_text(font(p)));
+    }
 
+    print_char(' ');
+    print(character(p));
+  }
+}
+/* sec 0176 */
 void print_mark_ (integer p)
 { 
   print_char('{');
-  if ((p < hi_mem_min)||(p > mem_end))
+
+  if ((p < hi_mem_min) || (p > mem_end))
     print_esc("CLOBBERED.");
   else
-    show_token_list(mem[p].hh.v.RH, 0, max_print_line - 10);
-  print_char('}');
-} 
+    show_token_list(link(p), 0, max_print_line - 10);
 
-void print_rule_dimen_ (scaled d)
+  print_char('}');
+}
+/* sec 0176 */
+void print_rule_dimen(scaled d)
 {
   if ((d == -1073741824L)) /* - 2^30 */
     print_char('*');
   else
     print_scaled(d);
 }
-
-void print_glue_(scaled d, integer order, str_number s)
+/* sec 0177 */
+void print_glue_(scaled d, integer order, char * s)
 {
   print_scaled(d); 
-  if ((order < 0)||(order > 3))
+
+  if ((order < normal) || (order > filll))
     print_string("foul");
   else if (order > 0)
   {
     print_string("fil");
-    while (order > 1) {
+
+    while (order > 1)
+    {
       print_char('l');
       decr(order);
     }
-  } else if(s != 0)
-    print(s);
+  }
+  else if (*s != '\0')
+    print_string(s);
 }
-
-void print_spec_(integer p, str_number s)
+/* sec 0178 */
+void print_spec_(integer p, char * s)
 {
-  if ((p < mem_min)||(p >= lo_mem_max)) 
+  if ((p < mem_min) || (p >= lo_mem_max)) 
     print_char('*');
-  else {
-    print_scaled(mem[p + 1].cint);
-    if (s != 0)
-      print(s);
-    if (mem[p + 2].cint != 0)
+  else
+  {
+    print_scaled(width(p));
+
+    if (*s != '\0')
+      print_string(s);
+
+    if (stretch(p) != 0)
     {
       print_string("plus");
-      print_glue(mem[p + 2].cint, mem[p].hh.b0, s);
+      print_glue(stretch(p), stretch_order(p), s);
     }
-    if (mem[p + 3].cint != 0)
+
+    if (shrink(p) != 0)
     {
       print_string("minus");
-      print_glue(mem[p + 3].cint, mem[p].hh.b1, s);
+      print_glue(shrink(p), shrink_order(p), s);
     }
   }
 }
-
+/* sec 0691 */
 void print_fam_and_char_(halfword p)
 {
   print_esc("fam");
-  print_int(mem[p].hh.b0);
+  print_int(fam(p));
   print_char(' ');
-  print(mem[p].hh.b1);
+  print(character(p));
 }
-
+/* sec 0691 */
 void print_delimiter_(halfword p)
 {
   integer a;
-  a = mem[p].qqqq.b0 * 256 + mem[p].qqqq.b1;
-  a = a * 4096 + mem[p].qqqq.b2 * 256 + mem[p].qqqq.b3;
+
+  a = small_fam(p) * 256 + small_char(p);
+  a = a * 0x1000 + large_fam(p) * 256 + large_char(p);
+
   if (a < 0)
     print_int(a);
   else
     print_hex(a);
-} 
-
+}
+/* sec 0692 */
 void print_subsidiary_data_(halfword p, ASCII_code c)
 {
   if ((pool_ptr - str_start[str_ptr]) >= depth_threshold)
   {
-    if (mem[p].hh.v.RH != 0)
-      print_string("[]");
-  } else {
-    {
-      str_pool[pool_ptr]= c;
-      incr(pool_ptr);
-    }
+    if (math_type(p) != 0)
+      print_string(" []");
+  }
+  else
+  {
+    append_char(c);
     temp_ptr = p;
-    switch (mem[p].hh.v.RH)
+
+    switch (math_type(p))
     {
-      case 1:
-        {
-          print_ln ();
-          print_current_string ();
-          print_fam_and_char(p);
-        }
+      case math_char:
+        print_ln();
+        print_current_string();
+        print_fam_and_char(p);
         break;
-      case 2:
-        show_info ();
+
+      case sub_box:
+        show_info();
         break;
-      case 3:
-        if (mem[p].hh.v.LH == 0)
+
+      case sub_mlist:
+        if (info(p) == 0)
         {
-          print_ln ();
-          print_current_string ();
+          print_ln();
+          print_current_string();
           print_string("{}");
-        } else show_info ();
+        }
+        else
+          show_info();
         break;
+
       default:
-        ;
         break;
     }
+
     decr(pool_ptr);
   }
 }
@@ -2211,358 +2128,432 @@ void print_skip_param_(integer n)
     case line_skip_code:
       print_esc("lineskip");
       break;
+
     case baseline_skip_code:
       print_esc("baselineskip");
       break; 
+
     case par_skip_code:
       print_esc("parskip");
       break;
+
     case above_display_skip_code:
       print_esc("abovedisplayskip");
       break;
+
     case below_display_skip_code:
       print_esc("belowdisplayskip");
       break;
+
     case above_display_short_skip_code:
       print_esc("abovedisplayshortskip");
       break;
+
     case below_display_short_skip_code:
       print_esc("belowdisplayshortskip");
       break;
+
     case left_skip_code:
       print_esc("leftskip");
       break;
+
     case right_skip_code:
       print_esc("rightskip");
       break;
+
     case top_skip_code:
       print_esc("topskip");
       break;
+
     case split_top_skip_code:
       print_esc("splittopskip");
       break;
+
     case tab_skip_code:
       print_esc("tabskip");
       break;
+
     case space_skip_code:
       print_esc("spaceskip");
       break;
+
     case xspace_skip_code:
       print_esc("xspaceskip");
       break;
+
     case par_fill_skip_code:
       print_esc("parfillskip");
       break;
+
     case thin_mu_skip_code:
       print_esc("thinmuskip");
       break;
+
     case med_mu_skip_code:
       print_esc("medmuskip");
       break; 
+
     case thick_mu_skip_code:
       print_esc("thickmuskip");
       break;
+
     default:
       print_string("[unknown glue parameter!]");
-      break; 
-  } 
-} 
-
+      break;
+  }
+}
+/* sec 0182 */
 void show_node_list_(integer p)
-{/* 10 */ 
-  integer n; 
-  real g; 
-/* begin if cur_length>depth_threshold then */
-  if ((pool_ptr - str_start[str_ptr]) > depth_threshold)
+{
+  integer n;
+  real g;
+
+  if (cur_length > depth_threshold)
   {
-/*    if(p > 0) */  /* was p>null !!! line 3662 in tex.web */
-    if(p != 0)    /* fixed 94/Mar/23 BUG FIX */
-            /* NOTE: still not fixed in 3.14159 ! */
-    print_string("[]");
+    if (p != 0)    /* fixed 94/Mar/23 BUG FIX NOTE: still not fixed in 3.14159 ! */
+      print_string(" []");
+
     return; 
-  } 
+  }
+
   n = 0; 
-/*  while(p > mem_min){ */  /* was p>mem_min !!! line 3667 in tex.web */
-  while(p != 0){      /* want p != null - bkph 93/Dec/15 */
-                /* NOTE: still not fixed in 3.14159 ! */
-    print_ln (); 
-    print_current_string (); 
+
+  while (p != 0) {      /* want p != null - bkph 93/Dec/15 NOTE: still not fixed in 3.14159 ! */
+    print_ln(); 
+    print_current_string(); 
+
     if (p > mem_end)
     {
       print_string("Bad link, display aborted.");
       return;
     }
+
     incr(n);
+
     if (n > breadth_max)
     {
       print_string("etc.");
       return;
     }
-    if ((p >= hi_mem_min))
+
+    if (is_char_node(p))
       print_font_and_char(p);
-    else switch (mem[p].hh.b0)
+    else switch (type(p))
     {
-      case 0:
-      case 1:
-      case 13:
+      case hlist_node:
+      case vlist_node:
+      case unset_node:
         {
-          if (mem[p].hh.b0 == 0)
+          if (type(p) == hlist_node)
             print_esc("h");
-          else if (mem[p].hh.b0 == 1)
+          else if (type(p) == vlist_node)
             print_esc("v");
           else print_esc("unset");
+
           print_string("box(");
-          print_scaled(mem[p + 3].cint);
+          print_scaled(height(p));
           print_char('+');
-          print_scaled(mem[p + 2].cint);
-          print_string(", shifted ");
-          print_scaled(mem[p + 1].cint);
-          if (mem[p].hh.b0 == 13)
+          print_scaled(depth(p));
+          print_string(")x");
+          print_scaled(width(p));
+
+          if (type(p) == unset_node)
           {
-            if (mem[p].hh.b1 != 0)
+            if (span_count(p) != 0)
             {
               print_string(" (");
-              print_int(mem[p].hh.b1 + 1);
+              print_int(span_count(p) + 1);
               print_string(" columns)");
             }
-            if (mem[p + 6].cint != 0)
+
+            if (glue_stretch(p) != 0)
             {
-              print_string(", stretch");
-              print_glue(mem[p + 6].cint, mem[p + 5].hh.b1, 0);
+              print_string(", stretch ");
+              print_glue(glue_stretch(p), glue_order(p), "");
             }
-            if (mem[p + 4].cint != 0)
+
+            if (glue_shrink(p) != 0)
             {
-              print_string(", shrink");
-              print_glue(mem[p + 4].cint, mem[p + 5].hh.b0, 0);
+              print_string(", shrink ");
+              print_glue(glue_shrink(p), glue_sign(p), "");
             }
-          } else {
-            g = mem[p + 6].gr;
-            if ((g != 0.0)&&(mem[p + 5].hh.b0 != 0))
+          }
+          else
+          {
+            g = glue_set(p);
+
+            if ((g != 0.0) && (glue_sign(p) != 0))
             {
-              print_string(", glue set");
-              if (mem[p + 5].hh.b0 == 2)
+              print_string(", glue set ");
+
+              if (glue_sign(p) == shrinking)
                 print_string("- ");
+
               if (fabs(g)> 20000.0)
               {
                 if (g > 0.0)
                   print_char('>');
                 else
                   print_string("< -");
-                print_glue(20000 * 65536L, mem[p + 5].hh.b1, 0);
-              } else print_glue(round(65536L * g), mem[p + 5].hh.b1, 0);
+
+                print_glue(20000 * unity, glue_order(p), "");
+              }
+              else
+                print_glue(round(unity * g), glue_order(p), "");
             }
-            if (mem[p + 4].cint != 0)
+
+            if (shift_amount(p) != 0)
             {
-              print_string("shifted");
-              print_scaled(mem[p + 4].cint);
+              print_string(", shifted ");
+              print_scaled(shift_amount(p));
             }
           }
+
           {
             {
-              str_pool[pool_ptr]= 46;
+              str_pool[pool_ptr] = 46;
               incr(pool_ptr);
             }
-            show_node_list(mem[p + 5].hh.v.RH);
+            show_node_list(mem[p + 5].hh.rh);
             decr(pool_ptr);
           }
         }
         break;
-      case 2:
+
+      case rule_node:
         {
           print_esc("rule(");
-          print_rule_dimen(mem[p + 3].cint);
+          print_rule_dimen(height(p));
           print_char('+');
-          print_rule_dimen(mem[p + 2].cint);
+          print_rule_dimen(depth(p));
           print_string(")x");
-          print_rule_dimen(mem[p + 1].cint);
+          print_rule_dimen(width(p));
         }
         break;
-      case 3:
+
+      case ins_node:
         {
           print_esc("insert");
-          print_int(mem[p].hh.b1);
-          print_string(",natural size ");
-          print_scaled(mem[p + 3].cint);
+          print_int(subtype(p));
+          print_string(", natural size ");
+          print_scaled(height(p));
           print_string("; split(");
-          print_spec(mem[p + 4].hh.v.RH, 0);
+          print_spec(split_top_ptr(p), "");
           print_char(',');
-          print_scaled(mem[p + 2].cint);
-          print_string("(; float cost");
-          print_int(mem[p + 1].cint);
+          print_scaled(depth(p));
+          print_string("); float cost ");
+          print_int(float_cost(p));
           {
             {
-              str_pool[pool_ptr]= 46;
+              str_pool[pool_ptr] = 46;
               incr(pool_ptr);
             }
-            show_node_list(mem[p + 4].hh.v.LH);
+            show_node_list(mem[p + 4].hh.lh);
             decr(pool_ptr);
           }
         }
         break;
       case 8:
-        switch (mem[p].hh.b1)
+        switch (subtype(p))
         {
-          case 0:
+          case open_node:
             {
               print_write_whatsit(1279, p);   /* debug # (-1 to exit): */
               print_char('=');
-              print_file_name(mem[p + 1].hh.v.RH, mem[p + 2].hh.v.LH, mem[p + 2].hh.v.RH);
+              print_file_name(open_name(p), open_area(p), open_ext(p));
             }
             break;
-          case 1:
+
+          case write_node:
             {
               print_write_whatsit(591, p);  /* write */
-              print_mark(mem[p + 1].hh.v.RH);
+              print_mark(write_tokens(p));
             }
             break;
-          case 2:
+
+          case close_node:
             print_write_whatsit(1280, p); /* closeout */
             break;
-          case 3:
+
+          case special_node:
             {
               print_esc("special");
-              print_mark(mem[p + 1].hh.v.RH);
+              print_mark(write_tokens(p));
             }
             break;
-          case 4:
+
+          case language_node:
             {
               print_esc("setlanguage");
-              print_int(mem[p + 1].hh.v.RH);
-              print_string(" (hyphenmin");
-              print_int(mem[p + 1].hh.b0);
+              print_int(what_lang(p));
+              print_string(" (hyphenmin ");
+              print_int(what_lhm(p));
               print_char(',');
-              print_int(mem[p + 1].hh.b1);
+              print_int(what_rhm(p));
               print_char(')');
             }
             break;
+
           default:
-            print_string("whatsit");
+            print_string("whatsit?");
             break;
         }
         break;
-      case 10:
-        if (mem[p].hh.b1 >= 100)
+
+      case glue_node:
+        if (subtype(p) >= a_leaders)
         {
           print_esc("");
-          if (mem[p].hh.b1 == 101)
+
+          if (subtype(p) == c_leaders)
             print_char('c');
-          else if (mem[p].hh.b1 == 102)
+          else if (subtype(p) == x_leaders)
             print_char('x');
+
           print_string("leaders ");
-          print_spec(mem[p + 1].hh.v.LH, 0);
+
+          print_spec(glue_ptr(p), "");
           {
             {
-              str_pool[pool_ptr]= 46;
+              str_pool[pool_ptr] = 46;
               incr(pool_ptr);
             }
-            show_node_list(mem[p + 1].hh.v.RH);
+            show_node_list(mem[p + 1].hh.rh);
             decr(pool_ptr);
           }
-        } else {
+        }
+        else
+        {
           print_esc("glue");
-          if (mem[p].hh.b1 != 0)
+
+          if (subtype(p) != normal)
           {
             print_char('(');
-            if (mem[p].hh.b1 < 98)
-              print_skip_param(mem[p].hh.b1 - 1);
-            else if (mem[p].hh.b1 == 98)
+
+            if (subtype(p) < cond_math_glue)
+              print_skip_param(subtype(p) - 1);
+            else if (subtype(p) == cond_math_glue)
               print_esc("nonscript");
             else print_esc("mskip");
+
             print_char(')');
           }
-          if (mem[p].hh.b1 != 98)
+
+          if (subtype(p) != cond_math_glue)
           {
             print_char(' ');
-            if (mem[p].hh.b1 < 98)
-              print_spec(mem[p + 1].hh.v.LH, 0);
+
+            if (subtype(p) < cond_math_glue)
+              print_spec(glue_ptr(p), "");
             else
-              print_spec(mem[p + 1].hh.v.LH, 334); /* mu */
+              print_spec(glue_ptr(p), "mu");
           }
         }
         break;
-      case 11:
-        if (mem[p].hh.b1 != 99)
+
+      case kern_node:
+        if (subtype(p) != mu_glue)
         {
           print_esc("kern");
-          if (mem[p].hh.b1 != 0)
+
+          if (subtype(p) != normal)
             print_char(' ');
-          print_scaled(mem[p + 1].cint);
-          if (mem[p].hh.b1 == 2)
+
+          print_scaled(width(p));
+
+          if (subtype(p) == acc_kern)
             print_string(" (for accent)");
-        } else {
+        }
+        else
+        {
           print_esc("mkern");
-          print_scaled(mem[p + 1].cint);
+          print_scaled(width(p));
           print_string("mu");
         }
         break;
-      case 9:
+
+      case math_node:
         {
           print_esc("math");
-          if (mem[p].hh.b1 == 0)
+
+          if (subtype(p) == before)
             print_string("on");
-          else print_string("off");
-          if (mem[p + 1].cint != 0)
+          else
+            print_string("off");
+
+          if (width(p) != 0)
           {
-            print_string(", surrounded");
-            print_scaled(mem[p + 1].cint);
+            print_string(", surrounded ");
+            print_scaled(width(p));
           }
         }
         break;
-      case 6:
+
+      case ligature_node:
         {
-          print_font_and_char(p + 1);
-          print_string("(ligature");
-          if (mem[p].hh.b1 > 1)
+          print_font_and_char(lig_char(p));
+          print_string("(ligature ");
+
+          if (subtype(p) > 1)
             print_char('|');
-          font_in_short_display = mem[p + 1].hh.b0; 
-          short_display(mem[p + 1].hh.v.RH);
-          if (odd(mem[p].hh.b1))
+
+          font_in_short_display = font(lig_char(p)); 
+          short_display(lig_ptr(p));
+
+          if (odd(subtype(p)))
             print_char('|');
+
           print_char(')');
         }
         break;
-      case 12:
+
+      case penalty_node:
         {
           print_esc("penalty ");
-          print_int(mem[p + 1].cint);
+          print_int(penalty(p));
         }
         break;
-      case 7:
+
+      case disc_node:
         {
           print_esc("discretionary");
-          if (mem[p].hh.b1 > 0)
+
+          if (replace_count(p) > 0)
           {
             print_string(" replacing ");
-            print_int(mem[p].hh.b1);
+            print_int(replace_count(p));
           }
+
           {
             {
-              str_pool[pool_ptr]= 46;
+              str_pool[pool_ptr] = 46;
               incr(pool_ptr);
             }
-            show_node_list(mem[p + 1].hh.v.LH);
+            show_node_list(mem[p + 1].hh.lh);
             decr(pool_ptr);
           }
           {
             str_pool[pool_ptr]= 124;
             incr(pool_ptr);
           }
-          show_node_list(mem[p + 1].hh.v.RH);
+          show_node_list(mem[p + 1].hh.rh);
           decr(pool_ptr);
         }
         break;
-      case 4:
+
+      case mark_node:
         {
           print_esc("mark");
-          print_mark(mem[p + 1].cint);
+          print_mark(mark_ptr(p));
         }
         break;
-      case 5:
+
+      case adjust_node:
         {
           print_esc("vadjust");
           {
             {
-              str_pool[pool_ptr]= 46;
+              str_pool[pool_ptr] = 46;
               incr(pool_ptr);
             }
             show_node_list(mem[p + 1].cint);
@@ -2570,151 +2561,166 @@ void show_node_list_(integer p)
           }
         }
         break;
-      case 14:
-        print_style(mem[p].hh.b1);
+
+      case style_node:
+        print_style(subtype(p));
         break;
-      case 15:
+
+      case choice_node:
         {
           print_esc("mathchoice");
-          {
-            str_pool[pool_ptr]= 68;
-            incr(pool_ptr);
-          }
-          show_node_list(mem[p + 1].hh.v.LH);
+          append_char('D');
+          show_node_list(display_mlist(p));
           decr(pool_ptr);
-          {
-            str_pool[pool_ptr]= 84;
-            incr(pool_ptr);
-          }
-          show_node_list(mem[p + 1].hh.v.RH);
+          append_char('T');
+          show_node_list(text_mlist(p));
           decr(pool_ptr);
-          {
-            str_pool[pool_ptr]= 83;
-            incr(pool_ptr);
-          }
-          show_node_list(mem[p + 2].hh.v.LH);
+          append_char('S');
+          show_node_list(script_mlist(p));
           decr(pool_ptr);
-          {
-            str_pool[pool_ptr]= 115;
-            incr(pool_ptr);
-          } 
-          show_node_list(mem[p + 2].hh.v.RH); 
+          append_char('s');
+          show_node_list(script_script_mlist(p)); 
           decr(pool_ptr); 
         } 
         break;
-      case 16:
-      case 17:
-      case 18:
-      case 19:
-      case 20:
-      case 21:
-      case 22:
-      case 23:
-      case 24:
-      case 27:
-      case 26:
-      case 29:
-      case 28:
-      case 30:
-      case 31:
+
+      case ord_noad:
+      case op_noad:
+      case bin_noad:
+      case rel_noad:
+      case open_noad:
+      case close_noad:
+      case punct_noad:
+      case inner_noad:
+      case radical_noad:
+      case over_noad:
+      case under_noad:
+      case vcenter_noad:
+      case accent_noad:
+      case left_noad:
+      case right_noad:
         {
-          switch (mem[p].hh.b0)
+          switch (type(p))
           {
-            case 16:
+            case ord_noad:
               print_esc("mathord");
               break;
-            case 17:
+
+            case op_noad:
               print_esc("mathop");
               break;
-            case 18:
+
+            case bin_noad:
               print_esc("mathbin");
               break;
-            case 19:
+
+            case rel_noad:
               print_esc("mathrel");
               break;
-            case 20:
+
+            case open_noad:
               print_esc("mathopen");
               break;
-            case 21:
+
+            case close_noad:
               print_esc("mathclose");
               break;
-            case 22:
+
+            case punct_noad:
               print_esc("mathpunct");
               break;
-            case 23:
+
+            case inner_noad:
               print_esc("mathinner");
               break;
-            case 27:
+
+            case over_noad:
               print_esc("overline");
               break;
-            case 26:
+
+            case under_noad:
               print_esc("underline");
               break;
-            case 29:
+
+            case vcenter_noad:
               print_esc("vcenter");
               break;
-            case 24:
+
+            case radical_noad:
               {
                 print_esc("radical");
-                print_delimiter(p + 4);
+                print_delimiter(left_delimiter(p));
               }
               break;
-            case 28:
+
+            case accent_noad:
               {
                 print_esc("accent");
-                print_fam_and_char(p + 4);
+                print_fam_and_char(accent_chr(p));
               }
               break;
-            case 30:
+
+            case left_noad:
               {
                 print_esc("left");
-                print_delimiter(p + 1);
+                print_delimiter(delimiter(p));
               }
               break;
-            case 31:
+
+            case right_noad:
               {
                 print_esc("right");
-                print_delimiter(p + 1);
+                print_delimiter(delimiter(p));
               }
               break;
-          } 
-          if (mem[p].hh.b1 != 0)
-            if (mem[p].hh.b1 == 1)
+          }
+
+          if (subtype(p) != normal)
+            if (subtype(p) == limits)
               print_esc("limits");
-            else print_esc("nolimits");
-          if (mem[p].hh.b0 < 30)
-            print_subsidiary_data(p + 1, 46);
-          print_subsidiary_data(p + 2, 94);
-          print_subsidiary_data(p + 3, 95);
+            else
+              print_esc("nolimits");
+
+          if (type(p) < left_noad)
+            print_subsidiary_data(nucleus(p), '.');
+
+          print_subsidiary_data(supscr(p), '^');
+          print_subsidiary_data(subscr(p), '_');
         }
         break;
-      case 25:
+
+      case fraction_noad:
         {
-          print_esc("fraction");
-          if (mem[p + 1].cint == 1073741824L)  /* 2^30 */
+          print_esc("fraction, thickness ");
+
+          if (thickness(p) == 1073741824L)  /* 2^30 */
             print_string("= default");
-          else print_scaled(mem[p + 1].cint); 
-          if ((mem[p + 4].qqqq.b0 != 0) || (mem[p + 4].qqqq.b1 != 0) ||
-              (mem[p + 4].qqqq.b2 != 0) || (mem[p + 4].qqqq.b3 != 0))
+          else
+            print_scaled(thickness(p));
+
+          if ((small_fam(left_delimiter(p)) != 0) || (small_char(left_delimiter(p)) != 0) ||
+              (large_fam(left_delimiter(p)) != 0) || (large_char(left_delimiter(p)) != 0))
           {
-            print_string(", left");
-            print_delimiter(p + 4);
+            print_string(", left-delimiter ");
+            print_delimiter(left_delimiter(p));
           }
-          if ((mem[p + 5].qqqq.b0 != 0) || (mem[p + 5].qqqq.b1 != 0) ||
-              (mem[p + 5].qqqq.b2 != 0)||(mem[p + 5].qqqq.b3 != 0))
+
+          if ((small_fam(right_delimiter(p)) != 0) || (small_char(right_delimiter(p)) != 0) ||
+              (large_fam(right_delimiter(p)) != 0) || (large_char(right_delimiter(p)) != 0))
           {
-            print_string(", right");
-            print_delimiter(p + 5);
+            print_string(", right-delimiter ");
+            print_delimiter(right_delimiter(p));
           }
-          print_subsidiary_data(p + 2, 92);
-          print_subsidiary_data(p + 3, 47);
+
+          print_subsidiary_data(numerator(p), '\\');
+          print_subsidiary_data(denominator(p), '/');
         }
         break;
+
       default:
         print_string("Unknown node type!");
         break;
     }
-    p = mem[p].hh.v.RH;
-  } 
-} 
-/* NOTE: 262143L should be empty_flag */
+    p = link(p);
+  }
+}
\ No newline at end of file