OSDN Git Service

updated macros.
[putex/putex.git] / src / texsourc / local.c
index 6018f93..364f925 100644 (file)
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301 USA.  */
 
-#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
-
-#include "texwin.h"
-
-#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
-
-#include <setjmp.h>
-
 #define EXTERN extern
 
 #include "texd.h"
 
 /* Most Y & Y changes are localized here -- init() */
 
-/* Note int main (int ac, char *av[]) is in texmf.c */
-/* and that calls main_program = texbody in itex.c => initialize */
-/* which in turn calls init here in local.c */
-/* which then calls init_commands here in local.c */ 
-
 #define USEOUREALLOC      /* 96/Jan/20 */
 
 #define USEMEMSET       /* 98/Jan/23 */
 
-/* #define PREALLOCHOLE */    /* make hole in heap at bottom debugging */
-
-/* #define CHECKALIGNMENT */  /* reactivated 95/Jan/7 */
-
-/* #define HEAPSHOW */      /* debugging 96/Jan/20 */
-
-/* #ifdef TRYANDOPEN */     /* debugging only */
-
-/* #define SHOWHEAPERROR */   /* debugging 96/Jan/10 */
-
-#ifndef _WINDOWS
-/* #define HEAPWALK */      /* debugging 96/Oct/22 */
-#endif
-
 #ifdef USEOUREALLOC
   #define REALLOC ourrealloc
 #else
   #define REALLOC realloc
 #endif
 
-#include <time.h>
-#include <malloc.h> /* _msize, _expand, HEAPOK et.c */
-#include <direct.h> /* for _getcwd() */
-
-#pragma warning(disable:4032) // different type when promoted
-#ifndef _WINDOWS
-  #include <conio.h>            /* for _getch() */
-#endif
-#pragma warning(default:4032) // different type when promoted
-
-
-/* Argument handling, etc.  */ /* from common.h - setup `main' in texmf.c */
-/* extern int gargc; */
-/* extern char **gargv; */
-
-int wantcopyrght=1;
-
-/* appears in reverse order in EXE file */
+int wantcopyrght = 1;
 
 char *compiletime  =  __TIME__;
 char *compiledate  =  __DATE__;
 char *www          = "http://www.tug.org/yandy";
 char *rights       = "All Rights Reserved.";
-char *copyright    = "Copyright (C) 2007--2014 TeX Users Group.";
-char *yandyversion = "2.2.3"; /* 00/Jun/18 */
-char *application  = "Y & Y TeX"; /* 96/Jan/17 */
-char *tex_version  = "This is TeX, Version 3.14159265"; /* change with upgrade */
-
-/* #define COPYHASH 1890382 */
-/* #define COPYHASH 13862905 */
-/* #define COPYHASH 10558802 */
-/* #define COPYHASH 7254699 */
-/* #define COPYHASH 3950596 */
-/* #define COPYHASH 646493 */
-#define COPYHASH 12905299
+char *copyright    = "\nCopyright (C) 1993--2000 Y&Y, Inc.\n"
+                     "Copyright (C) 2007 TeX Users Group.\n"
+                     "Copyright (C) 2014 Clerk Ma.\n\n"
+                     "This program is free software; you can redistribute it and/or modify\n"
+                     "it under the terms of the GNU General Public License as published by\n"
+                     "the Free Software Foundation; either version 2 of the License, or\n"
+                     "(at your option) any later version.\n\n  ";
+char *yandyversion = "2.2.4";
+char *application  = "Y&Y TeX";
+char *tex_version  = "This is TeX, Version 3.14159265";
 
 clock_t start_time, main_time, finish_time;
 
-char *dvi_directory = ""; /* user specified directory for dvi file */
-char *log_directory = ""; /* user specified directory for log file */
-char *aux_directory = ""; /* user specified directory for aux file */
-
-char *texpath = "";   /* path to executable - used if env vars not set */
+char * dvi_directory = "";
+char * log_directory = "";
+char * aux_directory = "";
+char * fmt_directory = "";
+char * pdf_directory = "";
 
-// #define MAXLINE 256
+char * texpath = "";   /* path to executable - used if env vars not set */
 
 char log_line[MAXLINE];  // used also in tex9.c
 
@@ -126,7 +69,8 @@ bool reorder_arg_flag = true; /* put command line flags/arguments first */
 /* Mapping from Windows ANSI to DOS code page 850 96/Jan/20 */
 /* Used in tex0.c with wintodos[c-128]                      */
 
-unsigned char wintodos[128] = {
+unsigned char wintodos[128] =
+{
     0,   0,   0, 159,   0,   0,   0,   0,
    94,   0,   0,   0,   0,   0,   0,   0,
     0,  96,  39,   0,   0,   7,   0,   0,
@@ -145,15 +89,17 @@ unsigned char wintodos[128] = {
   155, 151, 163, 150, 129, 236, 231, 152
 };  
 
-void show_usage (char * program) {
+void show_usage (void)
+{
   char * s = log_line;
+
   sprintf (s, "\n"
       " yandytex [-?ivnwdrzpK] [-m=ini_mem] [-e=hyph_size] [-h=trie_size]\n"
       "          [-x=xchr_file] [-k=key_file] [-o=dvi_dir] [-l=log_dir] [-a=aux_dir]\n"
       "          [+format_file] [tex_file]\n\n"
-      "    -?    show this usage summary\n"
-      "    -i    start up as iniTeX (create format file)\n"
-      "    -v    be verbose (show implementation version number)\n"
+      "    --help    -?    show this usage summary\n"
+      "    --initex  -i    start up as iniTeX (create format file)\n"
+      "    --verbose -v    be verbose (show implementation version number)\n"
       "    -n    do not allow `non ASCII' characters in input files (complain instead)\n"
       "    -w    do not show `non ASCII' characters in hexadecimal (show as is)\n"
       "    -d    do not allow DOS style file names - i.e. do not convert \\ to /\n"
@@ -167,9 +113,9 @@ void show_usage (char * program) {
       "    -k    use `key replacement' defined in file\n"
       "    -o    write DVI file in specified directory (default current directory)\n"
       "    -l    write LOG file in specified directory (default current directory)\n"
-      "    -a    write AUX file in specified directory (default current directory)");
-  strcat(s, "\n");
+      "    -a    write AUX file in specified directory (default current directory)\n");
   show_line(log_line, 1);
+
 #ifndef _WINDOWS
   uexit(1);     // has this been setup yet ???
 #endif
@@ -186,46 +132,57 @@ void show_usage (char * program) {
 
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 
-/* Sep 27 1990 => 1990 Sep 27 */
-/* 012456789      0123456789  */
-
+// Sep 27 1990 => 1990 Sep 27
+// 012456789      0123456789
 void scivilize (char * date)
 {
   int k;
   char pyear[6];
+
   strcpy (pyear, date + 7);
-  for (k = 5; k >= 0; k--) date[k + 5] = date[k];
-  for (k = 0; k < 4; k++) date[k] = pyear[k];
+
+  for (k = 5; k >= 0; k--)
+    date[k + 5] = date[k];
+
+  for (k = 0; k < 4; k++)
+    date[k] = pyear[k];
+
   date[4] = ' ';
-  if (date[9] == ' ') date[9] = '0'; /* replace space by '0' */
+
+  if (date[9] == ' ')
+    date[9] = '0'; /* replace space by '0' */
+
   return;
 }
 
-/* Thu Sep 27 06:26:35 1990 => 1990 Sep 27 06:26:35 */
-
+// Thu Sep 27 06:26:35 1990 => 1990 Sep 27 06:26:35
 void lcivilize (char * date)
 {
   int k;
   char pyear[6];
 
   strcpy (pyear, date + 20);
-  for (k = 18; k >= 0; k--) date[k+1] = date[k];
-/*  date[20] = '\n'; */
-/*  date[21] = '\0'; */
-  date[20] = '\0'; 
-  for (k = 0; k < 4; k++) date[k] = pyear[k];
+
+  for (k = 18; k >= 0; k--)
+    date[k+1] = date[k];
+
+  date[20] = '\0';
+
+  for (k = 0; k < 4; k++)
+    date[k] = pyear[k];
+
   date[4] = ' ';
+
   return;
 }
 
-// void stamp_it (FILE *outfile)
 // now writes result into given buffer
 void stamp_it (char *s)
 {
   char date[11 + 1];
 
   strcpy(date, compiledate);
-  scivilize(date);   
+  scivilize(date);
   sprintf(s, "%s %s ", application, yandyversion);
   s += strlen(s);
   sprintf(s, "(compiled time: %s %s)", date, compiletime);
@@ -234,15 +191,16 @@ void stamp_it (char *s)
 
 void stampcopy (char *s)
 {
-  if (wantcopyrght) {
-    sprintf(s, "%s %s", copyright, www);    /* 99/Oct/25 */
+  if (wantcopyrght)
+  {
+    sprintf(s, "%s %s", copyright, www);
   }
 }
 
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 
 #define MAXCHRS 256
-#define NOTDEF 127
+#define NOTDEF  127
 
 void read_xchr_sub (FILE * xchr_input)
 {
@@ -250,60 +208,70 @@ void read_xchr_sub (FILE * xchr_input)
   int k, from, to, count = 0;
   char *s;
 
-#ifdef USEMEMSET
-  memset (xchr, NOTDEF, MAXCHRS);           /* mark unused */
-#else
-  for (k = 0; k < MAXCHRS; k++) xchr[k]= -1; /* mark unused */
-#endif
-#ifdef USEMEMSET
-  memset (xord, NOTDEF, MAXCHRS);           /* mark unused */
-#else
-  for (k = 0; k < MAXCHRS; k++) xord[k]= -1;  /* mark unused */
-#endif
+  memset (xchr, NOTDEF, MAXCHRS);
+  memset (xord, NOTDEF, MAXCHRS);
 
 #ifdef ALLOCATEBUFFER
-  while (fgets(buffer, current_buf_size, xchr_input) != NULL) 
+  while (fgets(buffer, current_buf_size, xchr_input) != NULL)
 #else
   while (fgets(buffer, sizeof(buffer), xchr_input) != NULL)
 #endif
   {
-    if (*buffer == '%' || *buffer == ';' || *buffer == '\n') continue;
-/*    if (sscanf (buffer, "%d %d", &from, &to) < 2)
-      sprintf(log_line, "Do not understand: %s", buffer); */
+    if (*buffer == '%' || *buffer == ';' || *buffer == '\n')
+      continue;
+
     from = (int) strtol (buffer, &s, 0);
     to = (int) strtol (s, NULL, 0);
-/*    what if line is bad ? do we just get from = 0 and to = 0 ? */
-    if (from >= 0 && from < MAXCHRS && to >= 0 && to < MAXCHRS) {
-      if (xchr[from]== (unsigned char) NOTDEF)
-        xchr[from]= (unsigned char) to;
-      else {
+
+    if (from >= 0 && from < MAXCHRS && to >= 0 && to < MAXCHRS)
+    {
+      if (xchr[from] == (unsigned char) NOTDEF)
+      {
+        xchr[from] = (unsigned char) to;
+      }
+      else
+      {
         sprintf(log_line, "NOTE: %s collision: %d => %d, %d\n", "xchr", from, xchr[from], to);
         show_line(log_line, 0);
       }
-      if (xord[to]== NOTDEF)
-        xord[to]= (unsigned char) from;
-      else {
+
+      if (xord[to] == NOTDEF)
+      {
+        xord[to] = (unsigned char) from;
+      }
+      else
+      {
         sprintf(log_line, "NOTE: %s collision: %d => %d, %d\n", "xord", to, xord[to], from);
         show_line(log_line, 0);
       }
+
       count++;
     }
   }
-/*  now fill in the gaps */ /* not clear this is a good idea ... */
-  for (k = 0; k < MAXCHRS; k++) {
-    if (xchr[k]== NOTDEF) {   /* if it has not been filled */
-      if (xord[k]== NOTDEF) { /* see whether used already */
-        xchr[k]= (unsigned char) k; /* no, so make identity */
-        xord[k]= (unsigned char) k; /* no, so make identity */
+
+  for (k = 0; k < MAXCHRS; k++)
+  {
+    if (xchr[k] == NOTDEF)   /* if it has not been filled */
+    {
+      if (xord[k] == NOTDEF) /* see whether used already */
+      {
+        xchr[k] = (unsigned char) k; /* no, so make identity */
+        xord[k] = (unsigned char) k; /* no, so make identity */
       }
     }
   }
-  xchr[NOTDEF]= NOTDEF;         /* fixed point of mapping */
-  if (trace_flag) {
+
+  xchr[NOTDEF] = NOTDEF;         /* fixed point of mapping */
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Read %d xchr[] pairs:\n", count);
     show_line(log_line, 0);
-    for (k = 0; k < MAXCHRS; k++) {
-      if (xchr[k]!= NOTDEF) {
+
+    for (k = 0; k < MAXCHRS; k++)
+    {
+      if (xchr[k] != NOTDEF)
+      {
         sprintf(log_line, "%d => %d\n", k, xchr[k]);
         show_line(log_line, 0);
       }
@@ -321,31 +289,45 @@ void read_repl_sub (FILE * repl_input)
   int charnum[10];
   char *s, *t;
   
-#ifdef USEMEMSET
   memset(replacement, 0, MAXCHRS * sizeof(replacement[ 0]));
-#else
-  for (k = 0; k < MAXCHRS; k++) replacement[k] = NULL; 
-#endif
 
-  while (fgets(buffer, PATH_MAX, repl_input) != NULL) {
-    if (*buffer == '%' || *buffer == ';' || *buffer == '\n') continue;
+
+  while (fgets(buffer, PATH_MAX, repl_input) != NULL)
+  {
+    if (*buffer == '%' || *buffer == ';' || *buffer == '\n')
+      continue;
+
     if ((m = sscanf (buffer, "%d%n %s", &chrs, &n, &charname)) == 0)
-      continue; 
-    else if (m == 2) {
-      if (*charname == '"') {   /* deal with quoted string "..." */
+      continue;
+    else if (m == 2)
+    {
+      if (*charname == '"')   /* deal with quoted string "..." */
+      {
         s = buffer + n;
         t = charname;
-        while (*s != '"' && *s != '\0') s++;  /* step up to " */
-        if (*s++ == '\0') continue;       /* sanity check */
-        while (*s != '\0') {  
-          if (*s == '"') {
+
+        while (*s != '"' && *s != '\0')
+          s++;  /* step up to " */
+
+        if (*s++ == '\0')
+          continue;       /* sanity check */
+
+        while (*s != '\0')
+        {
+          if (*s == '"')
+          {
             s++;            /* is it "" perhaps ? */
-            if (*s != '"') break;   /* no, end of string */
+
+            if (*s != '"')
+              break;   /* no, end of string */
           }
+
           *t++ = *s++;          /* copy over */
         }
+
         *t = '\0';              /* and terminate */
       }
+
       if (chrs >= 0 && chrs < MAXCHRS)
         replacement[chrs] = xstrdup(charname);
     }
@@ -365,10 +347,15 @@ void read_repl_sub (FILE * repl_input)
       show_line(log_line, 1);
     }
   }
-  if (trace_flag) {                  /* debugging output */
+
+  if (trace_flag)
+  {
     show_line("Key replacement table\n", 0);
-    for (k = 0; k < MAXCHRS; k++) {
-      if (replacement[k] != NULL) {
+
+    for (k = 0; k < MAXCHRS; k++)
+    {
+      if (replacement[k] != NULL)
+      {
         sprintf(log_line, "%d\t%s\n", k, replacement[k]);
         show_line(log_line, 0);
       }
@@ -378,94 +365,148 @@ void read_repl_sub (FILE * repl_input)
 
 /* Following used both to read xchr[] file and key replacement file */
 /* the flag is 0 for -x=... and the flag is 1 for -k=... */
-
 int read_xchr_file (char *filename, int flag, char *argv[])
 {
   FILE *pinput;
   char infile[PATH_MAX];
   char *s;
 
-  if (filename == NULL) return -1;
-  if (trace_flag) {
+  if (filename == NULL)
+    return -1;
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Reading xchr/repl %s\n", filename);
     show_line(log_line, 0);
   }
 
 /*  first try using file as specified */
   strcpy(infile, filename);
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Trying %s\n", infile);
     show_line(log_line, 0);
   }
-  if (share_flag == 0) pinput = fopen (infile, "r");
-  else pinput = _fsopen (infile, "r", share_flag);    /* 94/July/12 */
-  if (pinput == NULL) {
-    if (strrchr(infile, '.') == NULL) {
-      if (flag == 0) strcat(infile, ".map");
-      else strcat(infile, ".key");
-      if (trace_flag) {
+
+  if (share_flag == 0)
+    pinput = fopen (infile, "r");
+  else
+    pinput = _fsopen (infile, "r", share_flag);    /* 94/July/12 */
+
+  if (pinput == NULL)
+  {
+    if (strrchr(infile, '.') == NULL)
+    {
+      if (flag == 0)
+        strcat(infile, ".map");
+      else
+        strcat(infile, ".key");
+
+      if (trace_flag)
+      {
         sprintf(log_line, "Trying %s\n", infile);
         show_line(log_line, 0);
       }
-      if (share_flag == 0) pinput = fopen (infile, "r");
-      else pinput = _fsopen (infile, "r", share_flag);  /* 94/July/12 */
+
+      if (share_flag == 0)
+        pinput = fopen (infile, "r");
+      else
+        pinput = _fsopen (infile, "r", share_flag);  /* 94/July/12 */
     }
   }
-  if (pinput == NULL) {
-/*    strcpy (infile, gargv[0]); */   /* try TeX program path */
+
+  if (pinput == NULL)
+  {
     strcpy (infile, argv[0]);     /* try TeX program path */
+
     if ((s = strrchr (infile, '\\')) != NULL) *(s+1) = '\0';
     else if ((s = strrchr (infile, '/')) != NULL) *(s+1) = '\0';
     else if ((s = strrchr (infile, ':')) != NULL) *(s+1) = '\0';
+
     strcat (infile, filename);
-    if (trace_flag) {
+
+    if (trace_flag)
+    {
       sprintf(log_line, "Trying %s\n", infile);
       show_line(log_line, 0);
     }
-    if (share_flag == 0) pinput = fopen (infile, "r");
-    else pinput = _fsopen (infile, "r", share_flag);    /* 94/July/12 */
-    if (pinput == NULL) {
-      if (strchr(infile, '.') == NULL) {
-        if (flag == 0) strcat(infile, ".map");
-        else strcat(infile, ".key");
-        if (trace_flag) {
+
+    if (share_flag == 0)
+      pinput = fopen (infile, "r");
+    else
+      pinput = _fsopen (infile, "r", share_flag);    /* 94/July/12 */
+
+    if (pinput == NULL)
+    {
+      if (strchr(infile, '.') == NULL)
+      {
+        if (flag == 0)
+          strcat(infile, ".map");
+        else
+          strcat(infile, ".key");
+
+        if (trace_flag)
+        {
           sprintf(log_line, "Trying %s\n", infile);
           show_line(log_line, 0);
         }
-        if (share_flag == 0) pinput = fopen (infile, "r");
-        else pinput = _fsopen (infile, "r", share_flag); /* 94/July/12 */
+
+        if (share_flag == 0)
+          pinput = fopen (infile, "r");
+        else
+          pinput = _fsopen (infile, "r", share_flag); /* 94/July/12 */
       }
     }
   }
-  if (pinput == NULL) {          /* 97/July/31 */
-/*    strcpy (infile, gargv[0]); */   /* try TeX program path\keyboard */
+
+  if (pinput == NULL)   /* 97/July/31 */
+  {
     strcpy (infile, argv[0]);     /* try TeX program path */
+
     if ((s = strrchr (infile, '\\')) != NULL) *(s+1) = '\0';
     else if ((s = strrchr (infile, '/')) != NULL) *(s+1) = '\0';
     else if ((s = strrchr (infile, ':')) != NULL) *(s+1) = '\0';
+
     strcat (infile, "keyboard\\");
     strcat (infile, filename);
-    if (trace_flag) {
+
+    if (trace_flag)
+    {
       sprintf(log_line, "Trying %s\n", infile);
       show_line(log_line, 0);
     }
-    if (share_flag == 0) pinput = fopen (infile, "r");
-    else pinput = _fsopen (infile, "r", share_flag);
-    if (pinput == NULL) {
-      if (strchr(infile, '.') == NULL) {
-        if (flag == 0) strcat(infile, ".map");
-        else strcat(infile, ".key");
-        if (trace_flag) {
+
+    if (share_flag == 0)
+      pinput = fopen (infile, "r");
+    else
+      pinput = _fsopen (infile, "r", share_flag);
+
+    if (pinput == NULL)
+    {
+      if (strchr(infile, '.') == NULL)
+      {
+        if (flag == 0)
+          strcat(infile, ".map");
+        else
+          strcat(infile, ".key");
+
+        if (trace_flag)
+        {
           sprintf(log_line, "Trying %s\n", infile);
           show_line(log_line, 0);
         }
-        if (share_flag == 0) pinput = fopen (infile, "r");
-        else pinput = _fsopen (infile, "r", share_flag);
+
+        if (share_flag == 0)
+          pinput = fopen (infile, "r");
+        else
+          pinput = _fsopen (infile, "r", share_flag);
       }
     }
   }
 /*  Note: can't look in TeX source file dir, since that is not known yet */
-  if (pinput == NULL) {
+  if (pinput == NULL)
+  {
     sprintf(log_line, "ERROR: Sorry, cannot find %s file %s",
         flag ? " xchr[]" : "key mapping", filename);
     show_line(log_line, 1);
@@ -491,14 +532,14 @@ int read_xchr_file (char *filename, int flag, char *argv[])
 /* Following may be useful if link without floating point emulation */
 
 #ifdef DEBUG
-void testfloating (void) {
-/*  double x = 1.0; */
-/*  double dx = DBL_EPSILON; */
+void testfloating (void)
+{
   double dx = 1.0;
   double dxold = 0.0;
   int k = 0;
-/*  while (x + dx != 1.0) { */
-  while (1.0 + dx != 1.0) {
+
+  while (1.0 + dx != 1.0)
+  {
     dxold = dx;
     dx = dx / 2.0;
     k++;
@@ -508,40 +549,6 @@ void testfloating (void) {
 }
 #endif
 
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-
-char *debugfile;      /* NULL or name of file to try and open */
-
-#ifdef SHOWHEAPERROR
-  char *heapstrings[] = {
-    "", "Empty", "OK", "Bad Begin", "Bad Node", "End", "Bad Pointer"
-  };
-#endif
-
-/* Attempt to get at problem with eqtb ... temporarily abandoned */
-
-#ifdef CHECKEQTB
-void check_eqtb (char *act) {
-  int k, count=0;
-  memory_word *eqtb = zeqtb;
-/*  for (k = 10280 + hash_extra; k < 10280 + eqtb_extra; k++) { */
-  for (k = hash_size + 780 + hash_extra; k < hash_size + 780 + eqtb_extra; k++) {
-    if (eqtb[k].cint != 0) {
-      if (count == 0) {
-        show_char('\n');
-        show_line("EQTB ", 0);
-      }
-      sprintf(log_line, "%d ", k);
-      show_line(log_line, 0);
-      if (count++ > 256) break;
-    }
-  }
-  if (count != 0) show_char('\n');
-}
-#endif
-
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-
 #define MAXSPLITS 3
 
 /* ad hoc default minimum growth in memory realloc is 62% */
@@ -551,83 +558,19 @@ int total_allocated = 0;  /* total memory allocated so far */
 int ini_max_address = 0;  /* maximum address when starting */
 int max_address     = 0;  /* maximum address seen in allocated memory */
 
-/* see texd.h */
-
-// DON'T USE THIS in DLL VERSION
-
-#ifndef _WINDOWS
-#ifdef HEAPWALK
-unsigned int heapthreshold=0; /* smallest size block interested in ... */
-
-unsigned int heap_dump (FILE *output, int verbose)
-{
-  unsigned int total=0;
-  struct _heapinfo hinfo;
-  int heapstatus;
-  int end_block=0;
-  int n;
-
-  if (verbose) fprintf(output, "HEAP DUMP:\n");
-
-/*  if ((n = _heapchk ()) != _HEAPOK) { */
-  n = _HEAPOK;
-#ifdef SHOWHEAPERROR
-  n = _heapchk();
-#endif
-  if (n != _HEAPOK) { 
-    fprintf(stderr, "WARNING: Heap corrupted (%d)\n", n);
-#ifdef SHOWHEAPERROR
-    fprintf(stderr, "HEAP %s (%s)\n", heapstrings[-n], "heap_dump");
-#endif
-  }
-  hinfo._pentry = NULL;
-  while ((heapstatus = _heapwalk(&hinfo)) == _HEAPOK) {
-    if (end_block > 0 && (int) hinfo._pentry > end_block + 1024) {
-//      if (verbose) printf("GAP of %d bytes!\n", (int) hinfo._pentry - end_block);
-    }
-    end_block = (int) hinfo._pentry + hinfo._size;
-    if (hinfo._useflag == _USEDENTRY) total += hinfo._size;
-    if (hinfo._size >= heapthreshold && verbose)
-    fprintf(output, "%6s block at %p (%7d) of size %6X (%7d) => (%7d)\n",
-      (hinfo._useflag == _USEDENTRY ? "USED" : "...."),
-        hinfo._pentry, hinfo._pentry, hinfo._size, hinfo._size,
-          end_block);
-  }
-  switch (heapstatus) {
-    case _HEAPEMPTY:
-      if (verbose) fprintf(output, "OK - empty heap\n");
-      break;
-    case _HEAPEND:
-      if (verbose) fprintf(output, "OK - end of heap (%u bytes used)\n", total);
-      break;
-    case _HEAPBADPTR:
-      fprintf(output, "ERROR - %s\n", "bad pointer to heap");
-      break;
-    case _HEAPBADBEGIN:
-      fprintf(output, "ERROR - %s\n", "bad start of heap");
-      break;
-    case _HEAPBADNODE:
-      fprintf(output, "ERROR - %s\n", "bad node in heap");
-      break;  
-  }
-  return total;
-}
-#endif
-#endif
 
 void show_maximums (FILE *output)
 {
-#ifdef HEAPWALK
-  unsigned heaptotal=0;           /* no longer used */
-  heaptotal = heap_dump(stdout, 0);      /* 94/Apr/3 */
-#endif
-  sprintf(log_line, "Max allocated %d --- max address %d\n", total_allocated, max_address); 
+  sprintf(log_line, "Max allocated %d --- max address %d\n", total_allocated, max_address);
 //  if (output != NULL) fputs(log_line, output); // log file
 //  else if (flag == 0) show_line(log_line, 0); // informative
 //  else if (flag == 1) show_line(log_line, 1); // error
-  if (output == stderr) show_line(log_line, 1);
-  else if (output == stdout) show_line(log_line, 0);
-  else fputs(log_line, output);
+  if (output == stderr)
+    show_line(log_line, 1);
+  else if (output == stdout)
+    show_line(log_line, 0);
+  else
+    fputs(log_line, output);
 }
 
 /* our own version of realloc --- avoid supposed MicroSoft version bug */
@@ -640,26 +583,25 @@ void *ourrealloc (void *old, size_t new_size)
   size_t old_size, overlap;
 
 /*  round up to nearest multiple of four bytes *//* avoid unlikely alignment */
-  if ((new_size % 4) != 0) new_size = ((new_size / 4) + 1) * 4;
+  if ((new_size % 4) != 0)
+    new_size = ((new_size / 4) + 1) * 4;
 
-  if (old == NULL) return malloc (new_size);  /* no old block - use malloc */
+  if (old == NULL)
+    return malloc (new_size);  /* no old block - use malloc */
 
   old_size = _msize (old);
-  if (old_size >= new_size && old_size < new_size + 4) return old;
-/*  _heapmin(); */  /* release unused heap space to the system - no op ? */
-#ifdef HEAPSHOW
-  if (trace_flag) {
-    show_line("BEFORE REALLOC: \n", 0);
-#ifdef HEAPWALK
-    (void) heap_dump(stdout, 1);     /* debugging 96/Jan/18 */
-#endif
-  }
-#endif
+
+  if (old_size >= new_size && old_size < new_size + 4)
+    return old;
+
   mnew = _expand (old, new_size);      /* first try and expand in place */
-  if (mnew != NULL) {
-    if (trace_flag) {
+
+  if (mnew != NULL)
+  {
+    if (trace_flag)
+    {
       sprintf(log_line, "EXPANDED! %d (%d) == %d (%d)\n",
-        mnew, new_size, old, old_size);
+          mnew, new_size, old, old_size);
       show_line(log_line, 0);
     }
     return mnew;
@@ -667,21 +609,21 @@ void *ourrealloc (void *old, size_t new_size)
 /*  *********************************************************************** */
 /*  do this if you want to call the real realloc next -  */
   mnew = realloc (old, new_size);
-#ifdef HEAPSHOW
-  if (trace_flag) {
-    show_line("AFTER REALLOC: \n", 0);
-#ifdef HEAPWALK
-    (void) heap_dump(stdout, 1);     /* debugging 96/Jan/18 */
-#endif
-  }
-#endif
-  if (mnew != NULL) return mnew;
+
+  if (mnew != NULL)
+    return mnew;
 /*  we are screwed typically if we ever drop through here - no more space */
 /*  *********************************************************************** */
   mnew = malloc (new_size);          /* otherwise find new space */
-  if (mnew == NULL) return mnew;        /* if unable to allocate */
-  if (old_size < new_size) overlap = old_size;
-  else overlap = new_size;
+
+  if (mnew == NULL)
+    return mnew;        /* if unable to allocate */
+
+  if (old_size < new_size)
+    overlap = old_size;
+  else
+    overlap = new_size;
+
   memcpy (mnew, old, overlap);         /* copy old data to new area */
   free(old);                  /* free the old area */
   return mnew;
@@ -690,22 +632,15 @@ void *ourrealloc (void *old, size_t new_size)
 
 void memory_error (char *s, int n)
 {
-  if (log_opened) {
+  if (log_opened)
+  {
     fprintf(log_file, "\n! Unable to allocate %d bytes for %s\n", n, s);
     show_maximums(log_file);
-#ifdef HEAPWALK
-    if (heap_flag) (void) heap_dump(log_file, 1);
-#endif
   }
+
   sprintf(log_line, "\n! Unable to allocate %d bytes for %s\n", n, s);
   show_line(log_line, 1);
   show_maximums(stderr);
-#ifdef HEAPWALK
-  if (heap_flag) (void) heap_dump(stderr, 1);
-#endif
-/*  exit (1); */      /* 94/Jan/22 */
-/*  return to let TeX do its thing (such as complain about runaway) */  
-/*  don't set abort_flag here */
 }
 
 void trace_memory (char *s, int n)
@@ -716,13 +651,16 @@ void trace_memory (char *s, int n)
 
 void update_statistics (int address, int size, int oldsize)
 {
-  if (address + size > max_address) max_address = address + size;
+  if (address + size > max_address)
+    max_address = address + size;
+
   total_allocated =  total_allocated + size - oldsize;
 }
 
 void probe_memory (void)
 {
   char *s;
+
   s = (char *) malloc (4); /* get current top address */
   free(s);
   update_statistics ((int) s, 0, 0); /* show where we are */
@@ -732,15 +670,14 @@ void probe_show (void)
 {
   probe_memory();
   show_maximums(stdout);
-#ifdef HEAPWALK
-  if (heap_flag) (void) heap_dump(stdout, 1);
-#endif
 }
 
 size_t roundup (size_t n)
 {
-  if ((n % 4) == 0) return n;
-  else return ((n / 4) + 1) * 4;
+  if ((n % 4) == 0)
+    return n;
+  else
+    return ((n / 4) + 1) * 4;
 }
 
 #ifdef ALLOCATETRIES
@@ -762,29 +699,39 @@ int allocate_tries (int trie_max)
       show_line(log_line, 1);
     exit (1);
   } */ /* ??? removed 1993/dec/17 */
-  if (trie_max > 1000000) trie_max = 1000000; /* some sort of sanity limit */
+  if (trie_max > 1000000)
+    trie_max = 1000000; /* some sort of sanity limit */
 /*  important + 1 because original was halfword trie_trl[trie_size + 1] etc. */
   nl = (trie_max + 1) * sizeof(halfword);    /* trie_trl[trie_size + 1] */
   no = (trie_max + 1) * sizeof(halfword);    /* trie_tro[trie_size + 1] */
   nc = (trie_max + 1) * sizeof(quarterword); /* trie_trc[trie_size + 1] */
   n = nl + no + nc;
-  if (trace_flag) trace_memory("hyphen trie", n);
-  trie_trl = (halfword *) malloc (roundup(nl));
-  trie_tro = (halfword *) malloc (roundup(no));
+
+  if (trace_flag)
+    trace_memory("hyphen trie", n);
+
+  trie_trl = (halfword *)    malloc (roundup(nl));
+  trie_tro = (halfword *)    malloc (roundup(no));
   trie_trc = (quarterword *) malloc (roundup(nc));
-  if (trie_trl == NULL || trie_tro == NULL || trie_trc == NULL) {
+
+  if (trie_trl == NULL || trie_tro == NULL || trie_trc == NULL)
+  {
     memory_error("hyphen trie", n);
     return -1;
   }
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Addresses trie_trl %d trie_tro %d trie_trc %d\n", trie_trl, trie_tro, trie_trc);
     show_line(log_line, 0);
   }
+
   update_statistics ((int) trie_trl, nl, 0);
   update_statistics ((int) trie_tro, no, 0);
   update_statistics ((int) trie_trc, nc, 0);
 /*  sprintf(log_line, "trie_size %d trie_max %d\n", trie_size, trie_max); */ /* debug */
   trie_size = trie_max;           /* BUG FIX 98/Jan/5 */
+
   if (trace_flag)
     probe_show();     /* 94/Mar/25 */
   return 0;               // success
@@ -794,7 +741,7 @@ int allocate_tries (int trie_max)
 #ifdef ALLOCATEHYPHEN
 bool prime (int);       /* test function later in this file */
 
-int currentprime = 0;         /* remember in case reallocated later */
+int current_prime = 0;         /* remember in case reallocated later */
 
 /* we don't return an address here, since TWO memory regions allocated */
 /* plus, we don't really reallocate, we FLUSH the old information totally */
@@ -803,10 +750,11 @@ int currentprime = 0;         /* remember in case reallocated later */
 int realloc_hyphen (int hyphen_prime)
 {
   int n, nw, nl;
-  if (!prime(hyphen_prime)) {
-    sprintf(log_line, "ERROR: non-prime hyphen exception number (%d)\n", hyphen_prime); 
+
+  if (!prime(hyphen_prime))
+  {
+    sprintf(log_line, "ERROR: non-prime hyphen exception number (%d)\n", hyphen_prime);
     show_line(log_line, 1);
-//    exit (1);
     return -1;
   }
 /*  need not/cannot preserve old contents when hyphen prime is changed */
@@ -816,18 +764,25 @@ int realloc_hyphen (int hyphen_prime)
   nw = (hyphen_prime + 1) * sizeof(str_number);
   nl = (hyphen_prime + 1) * sizeof(halfword);
   n = nw + nl;
-  if (trace_flag) trace_memory("hyphen exception", n);
+
+  if (trace_flag)
+    trace_memory("hyphen exception", n);
+
 /*  initially hyph_word will be NULL so this acts like malloc */
 /*  hyph_word = (str_number *) malloc (nw); */
   hyph_word = (str_number *) REALLOC (hyph_word, nw);  /* 94/Mar/24 */
 /*  initially hyph_list will be NULL so this acts like malloc */
 /*  hyph_list = (halfword *) malloc (nl); */
   hyph_list = (halfword *) REALLOC (hyph_list, nl);   /* 94/Mar/24 */
-  if (hyph_word == NULL || hyph_list == NULL) {
+
+  if (hyph_word == NULL || hyph_list == NULL)
+  {
     memory_error("hyphen exception", n);
     return -1;
   }
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Addresses hyph_word %d hyph_list %d\n", hyph_word, hyph_list);
     show_line(log_line, 0);
   }
@@ -835,31 +790,36 @@ int realloc_hyphen (int hyphen_prime)
 #ifdef USEMEMSET
   memset(hyph_word, 0, (hyphen_prime + 1) * sizeof (hyph_word[0]));
 #else
-  for (k = 0; k <= hyphen_prime; k++) hyph_word[k]= 0; 
+  for (k = 0; k <= hyphen_prime; k++) hyph_word[k]= 0;
 #endif
+
 #ifdef USEMEMSET
   memset(hyph_list, 0, (hyphen_prime + 1) * sizeof (hyph_list[0]));
 #else
-  for (k = 0; k <= hyphen_prime; k++) hyph_list[k]= 0; 
+  for (k = 0; k <= hyphen_prime; k++) hyph_list[k]= 0;
 #endif
   hyph_count = 0;   /* or use reset_hyphen() in itex.c */
-  if (currentprime != 0) {
-    update_statistics ((int) hyph_word, nw, 
-      (currentprime + 1) * sizeof(str_number));
-    update_statistics ((int) hyph_list, nl, 
-      (currentprime + 1) * sizeof(halfword));
+
+  if (current_prime != 0)
+  {
+    update_statistics ((int) hyph_word, nw, (current_prime + 1) * sizeof(str_number));
+    update_statistics ((int) hyph_list, nl, (current_prime + 1) * sizeof(halfword));
   }
-  else {
+  else
+  {
     update_statistics ((int) hyph_word, nw, 0);
     update_statistics ((int) hyph_list, nl, 0);
   }
-  currentprime = hyphen_prime;
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
+  current_prime = hyphen_prime;
+
+  if (trace_flag)
+    probe_show();     /* 94/Mar/25 */
+
   return 0;               // success
 }
 #endif
 
-int current_mem_size=0;   /* current total words in main mem allocated -1 */
+int current_mem_size = 0;   /* current total words in main mem allocated -1 */
 
 /* this gets called from itex.c when it figures out what mem_top is */
 /* or gets called from here when in ini_TeX mode */ /* and nowhere else */
@@ -872,57 +832,76 @@ int current_mem_size=0;   /* current total words in main mem allocated -1 */
 memory_word *allocate_main_memory (int size)
 {
   int n;
-  
+
 /*  Using -i *and* pre-loading format */ /* in this case get called twice */
 /*  Get rid of initial blank memory again or use realloc ... */
 /*  Could we avoid this by detecting presence of & before allocating ? */
 /*  Also, if its already large enough, maybe we can avoid this ? */
 /*  don't bother if current_mem_size == mem_max - mem_start ? */
-  if (mainmemory != NULL) {
-/*    free(mainmemory); */
-/*    mainmemory = NULL; */
-    if (trace_flag) show_line("Reallocating initial memory allocation\n", 1);
-/*    if (mem_spec_flag)
-  show_line("Cannot change initial main memory size when format is read\n", 1);*/
-  } 
+  if (mainmemory != NULL)
+  {
+    if (trace_flag)
+      show_line("Reallocating initial memory allocation\n", 1);
+  }
 
   mem_top = mem_bot + size;
+
 #ifdef ALLOCATEHIGH         /* NOT USED ANYMORE */
-  if (mem_extra_high != 0 && !is_initex) mem_max = mem_top + mem_extra_high;  
+  if (mem_extra_high != 0 && !is_initex)
+    mem_max = mem_top + mem_extra_high;
 #endif
+
   mem_max = mem_top;
+
 #ifdef ALLOCATELOW          /* NOT USED ANYMORE */
   if (mem_extra_low != 0 && !is_initex)
     mem_start = mem_bot - mem_extra_low;  /* increase main memory */
 #endif
+
   mem_start = 0;     /* bottom of memory allocated by system */
 /*  mem_min = mem_start; */ /* bottom of area made available to TeX */
   mem_min = 0;       /* bottom of area made available to TeX */
   n = (mem_max - mem_start + 1) * sizeof (memory_word); /* 256k * 8 = 2000 k */
-  if (trace_flag) trace_memory("main memory", n);
+
+  if (trace_flag)
+    trace_memory("main memory", n);
+
 /*  mainmemory = (memory_word *) malloc (n); */  /* 94/March/24 */
 /*  normally mainmemory == NULL here so acts like malloc ... */
   mainmemory = (memory_word *) REALLOC (mainmemory, n);
-  if (mainmemory == NULL) {
+
+  if (mainmemory == NULL)
+  {
     memory_error("initial main memory", n);
 //    exit (1);             /* serious error */
     return NULL;
   }
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Address main memory == %d\n", mainmemory);
     show_line(log_line, 0);
   }
+
   zzzaa = mainmemory;
-  if (mem_start != 0 && !is_initex) zzzaa = mainmemory - mem_start; 
-  if (trace_flag) {
+
+  if (mem_start != 0 && !is_initex)
+    zzzaa = mainmemory - mem_start;
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Offset address main memory == %d\n", zzzaa);
     show_line(log_line, 0);
   }
+
   update_statistics ((int) mainmemory, n,
     (current_mem_size + 1) * sizeof (memory_word));
 /*  current_mem_size = (mem_max - mem_start + 1); */
   current_mem_size = mem_max - mem_start;   /* total number of words - 1 */
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
+
+  if (trace_flag)
+    probe_show();     /* 94/Mar/25 */
+
   return zzzaa;             /* same as zmem, mem 94/Jan/24 */
 }
 #endif  /* end of ALLOCATEMAIN */
@@ -941,94 +920,145 @@ memory_word *realloc_main (int losize, int hisize)
   int n = 0;          /* to quieten compiler */
   memory_word * newmemory = NULL; /* to quieten compiler */
 
-/*  if (losize == 0 && hisize > 0) runawayflag = 1;     
+/*  if (losize == 0 && hisize > 0) runawayflag = 1;
   else runawayflag = 0; */ /* 94/Jan/22 */
 
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "WARNING: Entering realloc_main lo %d hi %d\n", losize, hisize);
     show_line(log_line, 0);
   }
-  if (is_initex) {
+
+  if (is_initex)
+  {
     show_line("ERROR: Cannot extent main memory in iniTeX\n", 1);
-    if (! knuth_flag) 
+
+    if (! knuth_flag)
       show_line("Please use `-m=...' on command line\n", 0);
 //    abort_flag++;  // ???
     return NULL;
   }
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Old Address %s == %d\n", "main memory", mainmemory);
     show_line(log_line, 0);
   }
-  if (current_mem_size + 1 == max_mem_size) {/* if we REALLY run up to limit ! */
+
+  if (current_mem_size + 1 == max_mem_size) /* if we REALLY run up to limit ! */
+  {
     memory_error("main memory", (max_mem_size + 1) * sizeof(memory_word));
 //    abort_flag++;  // ???
     return NULL;
   }
 /*  first allocation should expand *both* lo and hi */
-  if (hisize == 0 && mem_end == mem_max) hisize = losize;
-  if (losize == 0 && mem_start == mem_min) losize = hisize;
+  if (hisize == 0 && mem_end == mem_max)
+    hisize = losize;
+
+  if (losize == 0 && mem_start == mem_min)
+    losize = hisize;
+
 /*  try and prevent excessive frequent reallocations */
 /*  while avoiding over allocation by too much */
   minsize = current_mem_size / 100 * percent_grow;
-  if (losize + hisize < minsize) {
-    if (losize > 0 && hisize > 0) {
+
+  if (losize + hisize < minsize)
+  {
+    if (losize > 0 && hisize > 0)
+    {
       losize = minsize / 2;
       hisize = minsize / 2;
     }
-    else if (losize > 0) losize = minsize;
-    else if (hisize > 0) hisize = minsize;
+    else if (losize > 0)
+      losize = minsize;
+    else if (hisize > 0)
+      hisize = minsize;
   }
-  if (losize > 0 && losize < mem_top / 2) losize = mem_top / 2;
-  if (hisize > 0 && hisize < mem_top / 2) hisize = mem_top / 2;
 
-  for (k = 0; k < MAXSPLITS; k++) {
+  if (losize > 0 && losize < mem_top / 2)
+    losize = mem_top / 2;
+
+  if (hisize > 0 && hisize < mem_top / 2)
+    hisize = mem_top / 2;
+
+  for (k = 0; k < MAXSPLITS; k++)
+  {
     newsize = current_mem_size + losize + hisize;
-    if (newsize >= max_mem_size) {    /* bump against limit - ha ha ha */
+
+    if (newsize >= max_mem_size) /* bump against limit - ha ha ha */
+    {
       while (newsize >= max_mem_size) {
         losize = losize / 2; hisize = hisize / 2;
         newsize = current_mem_size + losize + hisize;
       }
     }
+
     n = (newsize + 1) * sizeof (memory_word);
-    if (trace_flag) trace_memory("main memory", n);
+
+    if (trace_flag)
+      trace_memory("main memory", n);
+
     newmemory = (memory_word *) REALLOC (mainmemory, n);
-    if (newmemory != NULL) break; /* did we get it ? */
-    if (current_mem_size == 0) break; /* in case we ever use for initial */
+
+    if (newmemory != NULL)
+      break; /* did we get it ? */
+
+    if (current_mem_size == 0)
+      break; /* in case we ever use for initial */
+
     losize = losize / 2; hisize = hisize / 2;
   }
 
-  if (newmemory == NULL) {
+  if (newmemory == NULL)
+  {
     memory_error("main memory", n);
     return zzzaa;           /* try and continue with TeX !!! */
   }
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "New Address %s == %d\n", "main memory", newmemory);
     show_line(log_line, 0);
   }
-  if (losize > 0) {
+
+  if (losize > 0)
+  {
 /*  shift everything upward to make space for new low area */
-    if (trace_flag) {
+    if (trace_flag)
+    {
       sprintf(log_line, "memmove %d %d %d \n", newmemory + losize,
           newmemory, (current_mem_size + 1) * sizeof(memory_word));
       show_line(log_line, 0);
     }
-    memmove (newmemory + losize, newmemory, 
-/*      current_mem_size * sizeof(memory_word));  */
+    memmove (newmemory + losize, newmemory,
       (current_mem_size + 1) * sizeof(memory_word));
 /*  could reduce words moved by (mem_max - mem_end) */
   }
   mainmemory = newmemory;       /* remember for free later */
-  if (losize > 0) mem_start = mem_start - losize; /* update lower limit */
-  if (hisize > 0) mem_max = mem_max + hisize;   /* update upper limit */
+
+  if (losize > 0)
+    mem_start = mem_start - losize; /* update lower limit */
+
+  if (hisize > 0)
+    mem_max = mem_max + hisize;   /* update upper limit */
+
   update_statistics ((int) mainmemory, n,
     (current_mem_size + 1) * sizeof (memory_word));
   current_mem_size = newsize;
-  if (current_mem_size != mem_max - mem_start) {
+
+  if (current_mem_size != mem_max - mem_start)
+  {
     show_line("ERROR: Impossible Memory Error\n", 1);
   }
-  if (mem_start != 0) zzzaa = mainmemory - mem_start; /* ??? sign ??? */
-  else zzzaa = mainmemory;
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
+
+  if (mem_start != 0)
+    zzzaa = mainmemory - mem_start; /* ??? sign ??? */
+  else
+    zzzaa = mainmemory;
+
+  if (trace_flag)
+    probe_show();     /* 94/Mar/25 */
+
   return zzzaa;
 }
 #endif
@@ -1036,23 +1066,25 @@ memory_word *realloc_main (int losize, int hisize)
 #ifdef ALLOCATEFONT
 /* font_mem_size = 10000L ==> font_info array 100k * 8 = 800 kilobytes */
 
-int current_font_mem_size=0;
+int current_font_mem_size = 0;
 
 /* fmemoryword can be either halfword or memory_word */
-fmemoryword *realloc_font_info (int size)
-{ /* number of memorywords */
-  fmemoryword *newfontinfo=NULL;
+fmemoryword * realloc_font_info (int size)
+{
+  fmemoryword *newfontinfo = NULL;
   int k, minsize;
-  int newsize=0;        /* to quieten compiler */
-  int n=0;          /* to quieten compiler */
+  int newsize = 0;  /* to quieten compiler */
+  int n = 0;        /* to quieten compiler */
 
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "Old Address %s == %d\n",  "font_info", font_info);
     show_line(log_line, 0);
   }
 /*  during initial allocation, font_info == NULL - realloc acts like malloc */
 /*  during initial allocation current_font_mem_size == 0 */
-  if (current_font_mem_size == font_mem_size) { /* if we REALLY run up to limit */
+  if (current_font_mem_size == font_mem_size)  /* if we REALLY run up to limit */
+  {
 /*    memory_error("font", (font_mem_size + 1) * sizeof(memory_word)); */
     return font_info;    /* pass it back to TeX 99/Fabe/4 */
   }
@@ -1060,52 +1092,78 @@ fmemoryword *realloc_font_info (int size)
 /*  while avoiding over allocation by too much */
 /*  minsize = current_font_mem_size / 2; */
   minsize = current_font_mem_size / 100 * percent_grow;
-  if (size < minsize) size = minsize;
-  if (size < initial_font_mem_size) size = initial_font_mem_size;
 
-  for (k=0; k < MAXSPLITS; k++) {
+  if (size < minsize)
+    size = minsize;
+
+  if (size < initial_font_mem_size)
+    size = initial_font_mem_size;
+
+  for (k=0; k < MAXSPLITS; k++)
+  {
     newsize = current_font_mem_size + size;
-    if (newsize > font_mem_size) newsize = font_mem_size; /* bump against limit */
+
+    if (newsize > font_mem_size)
+      newsize = font_mem_size; /* bump against limit */
+
 /*    important + 1 since fmemoryword font_info[font_mem_size + 1]  original */
     n = (newsize + 1) * sizeof (fmemoryword);
-    if (trace_flag) trace_memory("font_info", n);
+
+    if (trace_flag)
+      trace_memory("font_info", n);
+
     newfontinfo = (fmemoryword *) REALLOC (font_info, n);
-    if (newfontinfo != NULL) break;   /* did we get it ? */
-    if (current_font_mem_size == 0) break; /* initial allocation must work */
+
+    if (newfontinfo != NULL)
+      break;   /* did we get it ? */
+
+    if (current_font_mem_size == 0)
+      break; /* initial allocation must work */
+
     size = size / 2;
   }
 
-  if (newfontinfo == NULL) {
+  if (newfontinfo == NULL)
+  {
     memory_error("font", n);
     return font_info;        /* try and continue !!! */
   }
+
   font_info = newfontinfo;
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "New Address %s == %d\n", "font_info", font_info);
     show_line(log_line, 0);
   }
+
   update_statistics ((int) font_info, n, current_font_mem_size * sizeof(fmemoryword));
   current_font_mem_size = newsize;
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
+
+  if (trace_flag)
+    probe_show();     /* 94/Mar/25 */
   return font_info;
 }
 #endif
 
 #ifdef ALLOCATESTRING
-int current_pool_size=0;
+int current_pool_size = 0;
 
-packed_ASCII_code *realloc_str_pool (int size)
+packed_ASCII_code * realloc_str_pool (int size)
 {
   int k, minsize;
-  int newsize=0;
-  int n=0;
-  packed_ASCII_code *newstrpool=NULL;
+  int newsize = 0;
+  int n = 0;
+  packed_ASCII_code *newstrpool = NULL;
 
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "Old Address %s == %d\n", "string pool", str_pool);
     show_line(log_line, 0);
   }
-  if (current_pool_size == pool_size) {
+
+  if (current_pool_size == pool_size)
+  {
 /*    memory_error ("string pool", (pool_size + 1) * sizeof(packed_ASCII_code)); */
 /*    exit (1); */
     return str_pool;   /* pass it back to TeX 99/Fabe/4 */
@@ -1127,24 +1185,31 @@ packed_ASCII_code *realloc_str_pool (int size)
     size = size / 2;          /* else can retry smaller */
   }
 
-  if (newstrpool == NULL) {
+  if (newstrpool == NULL)
+  {
     memory_error("string pool", n);
     return str_pool;           /* try and continue !!! */
   }
+
   str_pool = newstrpool;
   update_statistics ((int) str_pool, n, current_pool_size);
   current_pool_size = newsize;
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "New Address %s == %d\n", "string pool", str_pool);
     show_line(log_line, 0);
   }
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
+  
+  if (trace_flag)
+    probe_show();     /* 94/Mar/25 */
+
   return str_pool;
 }
 #endif
 
 #ifdef ALLOCATESTRING
-int current_max_strings=0;
+int current_max_strings = 0;
 
 pool_pointer *realloc_str_start (int size)
 {
@@ -1153,11 +1218,14 @@ pool_pointer *realloc_str_start (int size)
   int newsize=0;
   pool_pointer *newstrstart=NULL;
 
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "Old Address %s == %d\n", "string start", str_start);
     show_line(log_line, 0);
   }
-  if (current_max_strings == max_strings) {
+
+  if (current_max_strings == max_strings)
+  {
 /*    memory_error ("string pointer", (max_strings + 1) * sizeof(pool_pointer)); */
 /*    exit (1); */
     return str_start;    /* pass it back to TeX 99/Fabe/4 */
@@ -1167,11 +1235,12 @@ pool_pointer *realloc_str_start (int size)
   if (size < minsize) size = minsize;
   if (size < initial_max_strings) size = initial_max_strings;
 
-  for (k = 0; k < MAXSPLITS; k++) {
+  for (k = 0; k < MAXSPLITS; k++)
+  {
     newsize = current_max_strings + size;
     if (newsize > max_strings) newsize = max_strings;
 /*    important + 1 since str_start[maxstring + 1] originally */
-    n = (newsize + 1) * sizeof (pool_pointer); 
+    n = (newsize + 1) * sizeof (pool_pointer);
     if (trace_flag) trace_memory("str_start", n);
     newstrstart = (pool_pointer *) REALLOC (str_start, n);
     if (newstrstart != NULL) break;   /* did we get it ? */
@@ -1198,9 +1267,9 @@ pool_pointer *realloc_str_start (int size)
 #ifdef ALLOCATEINI
 
 /* returns -1 if it fails */
-
+/* size == trie_size */
 int allocate_ini (int size)
-{    /* size == trie_size */
+{
   int n, nl, no, nc, nr, nh, nt;
     nh = nr = nl = (size + 1) *  sizeof(trie_pointer);
     no = (size + 1) *  sizeof(trie_op_code);
@@ -1245,7 +1314,7 @@ int allocate_ini (int size)
 #endif
 
 #ifdef ALLOCATESAVESTACK
-int current_save_size=0;
+int current_save_size = 0;
 
 memory_word *realloc_save_stack (int size)
 {
@@ -1253,20 +1322,29 @@ memory_word *realloc_save_stack (int size)
   int n=0, newsize=0;
   memory_word *newsave_stack=NULL;
 
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "Old Address %s == %d\n", "save stack", save_stack);
     show_line(log_line, 0);
   }
-  if (current_save_size == save_size) {  /* arbitrary limit */
+
+  if (current_save_size == save_size)  /* arbitrary limit */
+  {
 /*    memory_error ("save stack", (save_size + 1) * sizeof(memory_word)); */
 /*    exit (1); */
     return save_stack;       /* let TeX handle the error */
   }
+
   minsize =  current_save_size / 100 * percent_grow;
-  if (size < minsize) size = minsize;
-  if (size < initial_save_size) size = initial_save_size;
 
-  for (k = 0; k < MAXSPLITS; k++) {
+  if (size < minsize)
+    size = minsize;
+
+  if (size < initial_save_size)
+    size = initial_save_size;
+
+  for (k = 0; k < MAXSPLITS; k++)
+  {
     newsize = current_save_size + size;
     if (newsize > save_size) newsize = save_size;
     n = (newsize + 1) * sizeof (memory_word); /* save_stack[save_size + 1] */
@@ -1277,26 +1355,31 @@ memory_word *realloc_save_stack (int size)
     size = size / 2;          /* else can retry smaller */
   }
 
-  if (newsave_stack == NULL) {
+  if (newsave_stack == NULL)
+  {
     memory_error("save stack", n);
     return save_stack;           /* try and continue !!! */
   }
+
   save_stack = newsave_stack;
   update_statistics ((int) save_stack, n, current_save_size);
   current_save_size = newsize;
-  if (trace_flag) {
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Current%s %d\n", "save_size", current_save_size);
     show_line(log_line, 0);
     sprintf(log_line, "New Address %s == %d\n", "save stack", save_stack);
     show_line(log_line, 0);
   }
+
   if (trace_flag) probe_show();      /* 94/Mar/25 */
   return save_stack;
 }
 #endif
 
 #ifdef ALLOCATEINPUTSTACK
-int current_stack_size=0;       /* input stack size */
+int current_stack_size = 0;       /* input stack size */
 
 in_state_record *realloc_input_stack (int size)
 {
@@ -1347,7 +1430,7 @@ in_state_record *realloc_input_stack (int size)
 #endif
 
 #ifdef ALLOCATENESTSTACK
-int current_nest_size=0;        /* current nest size */
+int current_nest_size = 0;        /* current nest size */
 
 list_state_record *realloc_nest_stack (int size)
 {
@@ -1449,7 +1532,7 @@ halfword *realloc_param_stack (int size)
 #endif
 
 #ifdef ALLOCATEBUFFER
-int current_buf_size=0;
+int current_buf_size = 0;
 
 ASCII_code *realloc_buffer (int size)
 {
@@ -1504,70 +1587,18 @@ ASCII_code *realloc_buffer (int size)
 }
 #endif
 
-/* we used to allocate this one only to reduce the size of the PE file */
-/* not used anymore - NO advantage */
-
-#ifdef ALLOCATEDVIBUF
-eight_bits *allocatedvibuf (int size)
-{
-  eight_bits *dvi_buf;
-  int n;
-
-  n = (size + 1) * sizeof(eight_bits);
-  if (trace_flag) trace_memory("dvi_buf", n);
-  dvi_buf = (eight_bits *) malloc (roundup(n));
-  if (dvi_buf == NULL) {
-    memory_error("dvi_buf", n);
-    return NULL;
-  }
-  if (trace_flag) {
-    sprintf(log_line, "Address dvi_buf %d\n", dvi_buf);
-    show_line(log_line, 0);
-  }
-  update_statistics ((int) dvi_buf, n, 0);
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
-  return dvi_buf;
-}
-#endif
-
-/* we used to allocate this one only to reduce the size of the PE file */
-/* it can be done without loss in performance, since register eqtb = zeqtb */
-#ifdef ALLOCATEZEQTB
-memory_word *allocatezeqtb (int k)
-{
-  memory_word *zeqtb;
-  int n;
-
-  n = k * sizeof (memory_word);  /* 13507 * 8 = 108 kilobytes */
-  if (trace_flag)  trace_memory("eqtb", n);
-  zeqtb = (memory_word *) malloc (roundup(n));
-  if (zeqtb == NULL)  {
-    memory_error("eqtb", n);
-//    exit (1);           /* serious error */   
-    return NULL;
-  }
-  if (trace_flag) {
-    sprintf(log_line, "Address zeqtb %d\n", zeqtb);
-    show_line(log_line, 0);
-  }
-  update_statistics ((int) zeqtb, n, 0);
-  if (trace_flag)  probe_show();     /* 94/Mar/25 */
-  return zeqtb;
-}
-#endif
-
 /* here is the main memory allocation routine -- calls the above */
 /* returns -1 if it fails */
-
+/* allocate rather than static 93/Nov/26 */
 int allocate_memory (void)
-{ /* allocate rather than static 93/Nov/26 */
+{
 /*  int n;  */
 #ifdef PREALLOCHOLE
   char *holeadr = malloc (300000);  /* testing - preallocate 95/Jan/20 */
 #endif
 
 #ifdef ALLOCATEHASH
-#error ERROR: Not ready for ALLOCATEHASH...
+  #error ERROR: Not ready for ALLOCATEHASH...
 #endif
 
 /* probably not worth while/not a good idea allocating following */
@@ -1579,27 +1610,30 @@ int allocate_memory (void)
 /*  n = (9767 + eqtb_extra) * sizeof (twohalves); */
 #ifdef SHORTHASH
   n = (hash_size + 267 + eqtb_extra) * sizeof (htwohalves);   /* 95/Feb/19 */
-#else
-  n = (hash_size + 267 + eqtb_extra) * sizeof (twohalves);  /* 95/Feb/19 */
-#endif
-  if (trace_flag)  trace_memory("hash table", n);
-#ifdef SHORTHASH
   zzzae = (htwohalves *) malloc (roundup(n));
 #else
+  n = (hash_size + 267 + eqtb_extra) * sizeof (twohalves);  /* 95/Feb/19 */
   zzzae = (twohalves *) malloc (roundup(n));
 #endif
+  if (trace_flag)  trace_memory("hash table", n);
 /*  zzzae = (twohalves *) malloc ((hash_size + 267) * sizeof (twohalves)); */
-  if (zzzae == NULL)  {
+  if (zzzae == NULL)
+  {
     memory_error("hash table", n);
 //    exit (1);           /* serious error */
     return -1;            /* serious error */
   }
 
   n = (inputsize + 1) * sizeof(memory_word);
-  if (trace_flag)  trace_memory("input_stack", n);
+
+  if (trace_flag)
+    trace_memory("input_stack", n);
+
 /*  input_stack = (memory_word *) malloc ((inputsize + 1) * sizeof (memory_word)); */
   input_stack = (memory_word *) malloc (roundup(n));
-  if (input_stack == NULL)   {
+
+  if (input_stack == NULL)
+  {
     memory_error("input_stack", n);
 //    exit (1);           /* serious error */
     return -1;            /* serious error */
@@ -1703,9 +1737,11 @@ int allocate_memory (void)
 /*  this will be overridden later by what is in format file */
   hyphen_prime = default_hyphen_prime;
 /*  non ini-TeX use assumes format will be read and that specifies size */
-  if (is_initex) {
-    if (new_hyphen_prime) hyphen_prime = new_hyphen_prime;
-    if (realloc_hyphen (hyphen_prime)) /* allocate just in case no format */
+  if (is_initex)
+  {
+    if (new_hyphen_prime)
+      hyphen_prime = new_hyphen_prime;
+    if (realloc_hyphen(hyphen_prime)) /* allocate just in case no format */
       return -1;
   }
 #endif
@@ -1714,17 +1750,22 @@ int allocate_memory (void)
 /*  if iniTeX, need to allocate pre-determined fixed amount - trie_size */
 /*  if iniTeX not selected, allocate only enough later - undump in itex.c ! */
 #ifdef ALLOCATETRIES
-  if (is_initex) {
-    if (allocate_tries (trie_size)) return -1;
+  if (is_initex)
+  {
+    if (allocate_tries (trie_size))
+      return -1;
   }
 #endif
 
 /*  now for memory for hyphenation stuff needed only when running iniTeX */
 #ifdef ALLOCATEINI
-  if (is_initex) {
-    if (allocate_ini(trie_size)) return -1;
+  if (is_initex)
+  {
+    if (allocate_ini(trie_size))
+      return -1;
   }
-  else {
+  else
+  {
     trie_l = trie_r = trie_o = trie_hash = NULL; /* (trie_size + 1) * integer */
     trie_c = NULL;       /* (trie_size + 1) * char */
     trie_taken = NULL;     /* (trie_size + 1) * bool */
@@ -1737,30 +1778,25 @@ int allocate_memory (void)
 }
 
 /* returns non-zero if error - done to test integrity of stack mostly */
-
+/* free in reverse order 93/Nov/26 */
 int free_memory (void)
-{     /* free in reverse order 93/Nov/26 */
+{
   int n;
-  unsigned heaptotal=0;
+  unsigned heaptotal = 0;
 /*  unsigned total; */
 
   if (trace_flag) show_line("free_memory ", 0);
 
-#ifdef CHECKEQTB
-  if (debug_flag) check_eqtb("free_memory");
-#endif
-  if (verbose_flag || trace_flag) show_maximums(stdout); 
-#ifdef HEAPWALK
-  if (heap_flag) (void) heap_dump(stdout, 1);
-#endif
-  if (trace_flag) {
-#ifdef HEAPWALK
-    heaptotal = (void) heap_dump(stdout, 0);
-#endif
+  if (verbose_flag || trace_flag)
+    show_maximums(stdout); 
+
+  if (trace_flag)
+  {
     sprintf(log_line, "Heap total: %u bytes --- max address %u\n", 
         heaptotal, max_address);
     show_line(log_line, 0);
   }
+
   if (trace_flag) {
     sprintf(log_line, "Main Memory: variable node %d (%d - %d) one word %d (%d - %d)\n",
       lo_mem_max - mem_min, mem_min, lo_mem_max, mem_end  - hi_mem_min, hi_mem_min, mem_end);
@@ -1788,7 +1824,8 @@ int free_memory (void)
 #endif
 /*  only free memory if safe ... additional check */
 #ifdef ALLOCATEINI
-  if (is_initex) {
+  if (is_initex)
+  {
     if (trie_taken != NULL) free(trie_taken);
     if (trie_hash  != NULL) free(trie_hash);
     if (trie_r     != NULL) free(trie_r);
@@ -1867,7 +1904,8 @@ int free_memory (void)
   format_file = string_file = source_direct = NULL;
   if (dvi_file_name != NULL) free(dvi_file_name);
   if (log_file_name != NULL) free(log_file_name);
-  log_file_name = dvi_file_name = NULL;       /* 00/Jun/18 */
+  if (pdf_file_name != NULL) free(pdf_file_name);
+  pdf_file_name = log_file_name = dvi_file_name = NULL;       /* 00/Jun/18 */
   return 0;
 }
 
@@ -1885,9 +1923,9 @@ bool prime (int x)
   return true;
 }
 
-int quitflag=0;
-bool show_use=false;
-bool floating=false;
+int quitflag  = 0;
+bool show_use = false;
+bool floating = false;
 
 void complainarg (int c, char *s)
 {
@@ -1902,7 +1940,7 @@ void complainarg (int c, char *s)
 
 /* only  01234567.9 still left to take ... maybe recycle u */
 
-char *allowedargs="+bcdfijnpqrstvwyzABCDFGIJKLMNOPQRSTVWXYZ23456789?a=e=g=h=k=l=m=o=u=x=E=H=P=U=";
+char *allowedargs = "+bcdfijnpqrstvwyzABCDFGIJKLMNOPQRSTVWXYZ023456789?a=e=g=h=k=l=m=o=u=x=E=H=P=U=";
 
 /* char takeargs="gmueoazhluEH"; */ /* subset that takes args! needed here */
 
@@ -1974,7 +2012,7 @@ void reorderargs (int ac, char **av)
   }
 }
 
-int testalign (int address, int size, char *name)
+int test_align (int address, int size, char *name)
 {
   int n;
   if (size > 4) n = address % 4;
@@ -1990,382 +2028,231 @@ int testalign (int address, int size, char *name)
 
 void check_fixed_align (int flag)
 {
-  if (testalign ((int) &mem_top, 4, "FIXED ALIGNMENT")) {
+  if (test_align ((int) &mem_top, 4, "FIXED ALIGNMENT"))
+  {
     show_line("PLEASE RECOMPILE ME!\n", 1);
   }
 #ifdef CHECKALIGNMENT
-  if (!flag) return;
-  testalign ((int) &mem_top, 4, "mem_top");
-  testalign ((int) &mem_max, 4, "mem_max");
-  testalign ((int) &mem_min, 4, "mem_min");
-  testalign ((int) &bad, 4, "bad");
-  testalign ((int) &trie_size, 4, "trie_size");
-  testalign ((int) &xord, sizeof(xord[0]), "xord"); /* no op */
-  testalign ((int) &xchr, sizeof(xchr[0]), "xchr"); /* no op */
-  testalign ((int) &name_length, 4, "name_length");
-  testalign ((int) &first, 4, "first");
-  testalign ((int) &last, 4, "last");
-  testalign ((int) &max_buf_stack, 4, "max_buf_stack");
-  testalign ((int) &pool_ptr, 4, "pool_ptr");
-  testalign ((int) &str_ptr, 4, "str_ptr");
-  testalign ((int) &init_pool_ptr, 4, "init_pool_ptr");
-  testalign ((int) &init_str_ptr, 4, "init_str_ptr");
-  testalign ((int) &log_file, 4, "log_file");
-  testalign ((int) &tally, 4, "tally");
-  testalign ((int) &term_offset, 4, "term_offset");
-  testalign ((int) &file_offset, 4, "file_offset");
-  testalign ((int) &trick_count, 4, "trick_count");
-  testalign ((int) &first_count, 4, "first_count");
-  testalign ((int) &deletions_allowed, 4, "deletions_allowed");
-  testalign ((int) &set_box_allowed, 4, "set_box_allowed");
-  testalign ((char *) &help_line, sizeof(help_line[0]), "help_line");
-  testalign ((int) &use_err_help, 4, "use_err_help");
-  testalign ((int) &interrupt, 4, "interrupt");
-  testalign ((int) &OK_to_interrupt, 4, "OK_to_interrupt");
-  testalign ((int) &arith_error, 4, "arith_error");
-  testalign ((int) &tex_remainder, 4, "tex_remainder");
-  testalign ((int) &temp_ptr, 4, "temp_ptr");
-  testalign ((int) &lo_mem_max, 4, "lo_mem_max");
-  testalign ((int) &hi_mem_min, 4, "hi_mem_min");
-  testalign ((int) &var_used, 4, "var_used");
-  testalign ((int) &dyn_used, 4, "dyn_used");
-  testalign ((int) &avail, 4, "avail");
-  testalign ((int) &mem_end, 4, "mem_end");
-  testalign ((int) &mem_start, 4, "mem_start");
-  testalign ((int) &rover, 4, "rover");
-  testalign ((int) &font_in_short_display, 4, "font_in_short_display");
-  testalign ((int) &depth_threshold, 4, "depth_threshold");
-  testalign ((int) &breadth_max, 4, "breadth_max");
-  testalign ((int) &nest, sizeof(nest[0]), "nest");
+  if (!flag)
+    return;
+
+  test_align ((int) &mem_top, 4, "mem_top");
+  test_align ((int) &mem_max, 4, "mem_max");
+  test_align ((int) &mem_min, 4, "mem_min");
+  test_align ((int) &bad, 4, "bad");
+  test_align ((int) &trie_size, 4, "trie_size");
+  test_align ((int) &xord, sizeof(xord[0]), "xord"); /* no op */
+  test_align ((int) &xchr, sizeof(xchr[0]), "xchr"); /* no op */
+  test_align ((int) &name_length, 4, "name_length");
+  test_align ((int) &first, 4, "first");
+  test_align ((int) &last, 4, "last");
+  test_align ((int) &max_buf_stack, 4, "max_buf_stack");
+  test_align ((int) &pool_ptr, 4, "pool_ptr");
+  test_align ((int) &str_ptr, 4, "str_ptr");
+  test_align ((int) &init_pool_ptr, 4, "init_pool_ptr");
+  test_align ((int) &init_str_ptr, 4, "init_str_ptr");
+  test_align ((int) &log_file, 4, "log_file");
+  test_align ((int) &tally, 4, "tally");
+  test_align ((int) &term_offset, 4, "term_offset");
+  test_align ((int) &file_offset, 4, "file_offset");
+  test_align ((int) &trick_count, 4, "trick_count");
+  test_align ((int) &first_count, 4, "first_count");
+  test_align ((int) &deletions_allowed, 4, "deletions_allowed");
+  test_align ((int) &set_box_allowed, 4, "set_box_allowed");
+  test_align ((int) &help_line, sizeof(help_line[0]), "help_line");
+  test_align ((int) &use_err_help, 4, "use_err_help");
+  test_align ((int) &interrupt, 4, "interrupt");
+  test_align ((int) &OK_to_interrupt, 4, "OK_to_interrupt");
+  test_align ((int) &arith_error, 4, "arith_error");
+  test_align ((int) &tex_remainder, 4, "tex_remainder");
+  test_align ((int) &temp_ptr, 4, "temp_ptr");
+  test_align ((int) &lo_mem_max, 4, "lo_mem_max");
+  test_align ((int) &hi_mem_min, 4, "hi_mem_min");
+  test_align ((int) &var_used, 4, "var_used");
+  test_align ((int) &dyn_used, 4, "dyn_used");
+  test_align ((int) &avail, 4, "avail");
+  test_align ((int) &mem_end, 4, "mem_end");
+  test_align ((int) &mem_start, 4, "mem_start");
+  test_align ((int) &rover, 4, "rover");
+  test_align ((int) &font_in_short_display, 4, "font_in_short_display");
+  test_align ((int) &depth_threshold, 4, "depth_threshold");
+  test_align ((int) &breadth_max, 4, "breadth_max");
+  test_align ((int) &nest, sizeof(nest[0]), "nest");
 
 #ifdef ALLOCZEQTB
-  testalign ((int) &zeqtb, sizeof(zeqtb[0]), "zeqtb");  /* not any more ? */
-#endif
-/*  testalign ((int) &xeq_level, sizeof(xeq_level[0]), "xeq_level"); */
-  testalign ((int) &zzzad, sizeof(zzzad[0]), "zzzad");
-/*  testalign ((int) &hash, sizeof(hash[0]), "hash"); */
-  testalign ((int) &zzzae, sizeof(zzzae[0]), "zzzae");
-
-  testalign ((int) &save_stack, sizeof(save_stack[0]), "save_stack");
-  testalign ((int) &input_stack, sizeof(input_stack[0]), "input_stack");
-  testalign ((int) &input_file, sizeof(input_file[0]), "input_file");
-  testalign ((int) &line_stack, sizeof(line_stack[0]), "line_stack");
-  testalign ((int) &param_stack, sizeof(param_stack[0]), "param_stack");
-  testalign ((int) &cur_mark, sizeof(cur_mark[0]), "cur_mark");
-  testalign ((int) &pstack, sizeof(pstack[0]), "pstack");
-  testalign ((int) &read_file, sizeof(read_file[0]), "read_file");
-
-  testalign ((int) &font_check, sizeof(font_check[0]), "font_check");
-  testalign ((int) &font_size, sizeof(font_size[0]), "font_size");
-  testalign ((int) &font_dsize, sizeof(font_dsize[0]), "font_dsize");
-  testalign ((int) &font_params, sizeof(font_params[0]), "font_params");
-  testalign ((int) &font_name, sizeof(font_name[0]), "font_name");
-  testalign ((int) &font_area, sizeof(font_area[0]), "font_area");
-  testalign ((int) &font_bc, sizeof(font_bc[0]), "font_bc");
-  testalign ((int) &font_ec, sizeof(font_ec[0]), "font_ec");
-  testalign ((int) &font_glue, sizeof(font_glue[0]), "font_glue");
-  testalign ((int) &font_used, sizeof(font_used[0]), "font_used");
-  testalign ((int) &hyphen_char, sizeof(hyphen_char[0]), "hyphen_char");
-  testalign ((int) &skew_char, sizeof(skew_char[0]), "skew_char");
-  testalign ((int) &bchar_label, sizeof(bchar_label[0]), "bchar_label");
-  testalign ((int) &font_bchar, sizeof(font_bchar[0]), "font_bchar");
-  testalign ((int) &font_false_bchar, sizeof(font_false_bchar[0]), "font_false_bchar");
-  testalign ((int) &char_base, sizeof(char_base[0]), "char_base");
-  testalign ((int) &width_base, sizeof(width_base[0]), "width_base");
-  testalign ((int) &height_base, sizeof(height_base[0]), "height_base");
-  testalign ((int) &depth_base, sizeof(depth_base[0]), "depth_base");
-  testalign ((int) &italic_base, sizeof(italic_base[0]), "italic_base");
-  testalign ((int) &lig_kern_base, sizeof(lig_kern_base[0]), "lig_kern_base");
-  testalign ((int) &kern_base, sizeof(kern_base[0]), "kern_base");
-  testalign ((int) &exten_base, sizeof(exten_base[0]), "exten_base");
-  testalign ((int) &param_base, sizeof(param_base[0]), "param_base");
+  test_align ((int) &zeqtb, sizeof(zeqtb[0]), "zeqtb");  /* not any more ? */
+#endif
+/*  test_align ((int) &xeq_level, sizeof(xeq_level[0]), "xeq_level"); */
+  test_align ((int) &zzzad, sizeof(zzzad[0]), "zzzad");
+/*  test_align ((int) &hash, sizeof(hash[0]), "hash"); */
+  test_align ((int) &zzzae, sizeof(zzzae[0]), "zzzae");
+
+  test_align ((int) &save_stack, sizeof(save_stack[0]), "save_stack");
+  test_align ((int) &input_stack, sizeof(input_stack[0]), "input_stack");
+  test_align ((int) &input_file, sizeof(input_file[0]), "input_file");
+  test_align ((int) &line_stack, sizeof(line_stack[0]), "line_stack");
+  test_align ((int) &param_stack, sizeof(param_stack[0]), "param_stack");
+  test_align ((int) &cur_mark, sizeof(cur_mark[0]), "cur_mark");
+  test_align ((int) &pstack, sizeof(pstack[0]), "pstack");
+  test_align ((int) &read_file, sizeof(read_file[0]), "read_file");
+
+  test_align ((int) &font_check, sizeof(font_check[0]), "font_check");
+  test_align ((int) &font_size, sizeof(font_size[0]), "font_size");
+  test_align ((int) &font_dsize, sizeof(font_dsize[0]), "font_dsize");
+  test_align ((int) &font_params, sizeof(font_params[0]), "font_params");
+  test_align ((int) &font_name, sizeof(font_name[0]), "font_name");
+  test_align ((int) &font_area, sizeof(font_area[0]), "font_area");
+  test_align ((int) &font_bc, sizeof(font_bc[0]), "font_bc");
+  test_align ((int) &font_ec, sizeof(font_ec[0]), "font_ec");
+  test_align ((int) &font_glue, sizeof(font_glue[0]), "font_glue");
+  test_align ((int) &font_used, sizeof(font_used[0]), "font_used");
+  test_align ((int) &hyphen_char, sizeof(hyphen_char[0]), "hyphen_char");
+  test_align ((int) &skew_char, sizeof(skew_char[0]), "skew_char");
+  test_align ((int) &bchar_label, sizeof(bchar_label[0]), "bchar_label");
+  test_align ((int) &font_bchar, sizeof(font_bchar[0]), "font_bchar");
+  test_align ((int) &font_false_bchar, sizeof(font_false_bchar[0]), "font_false_bchar");
+  test_align ((int) &char_base, sizeof(char_base[0]), "char_base");
+  test_align ((int) &width_base, sizeof(width_base[0]), "width_base");
+  test_align ((int) &height_base, sizeof(height_base[0]), "height_base");
+  test_align ((int) &depth_base, sizeof(depth_base[0]), "depth_base");
+  test_align ((int) &italic_base, sizeof(italic_base[0]), "italic_base");
+  test_align ((int) &lig_kern_base, sizeof(lig_kern_base[0]), "lig_kern_base");
+  test_align ((int) &kern_base, sizeof(kern_base[0]), "kern_base");
+  test_align ((int) &exten_base, sizeof(exten_base[0]), "exten_base");
+  test_align ((int) &param_base, sizeof(param_base[0]), "param_base");
 
 #ifdef ALLOCATEDVIBUF
-  testalign ((int) &zdvibuf, sizeof(zdvibuf[0]), "zdvibuf"); /* no op */
-#endif
-  testalign ((int) &totalstretch, sizeof(totalstretch[0]), "totalstretch");
-  testalign ((int) &totalshrink, sizeof(totalshrink[0]), "totalshrink");
-  testalign ((int) &active_width, sizeof(active_width[0]), "active_width");
-  testalign ((int) &cur_active_width, sizeof(cur_active_width[0]), "cur_active_width");
-  testalign ((int) &background, sizeof(background[0]), "background");
-  testalign ((int) &break_width, sizeof(break_width[0]), "break_width");
-  testalign ((int) &minimal_demerits, sizeof(minimal_demerits[0]), "minimal_demerits");
-  testalign ((int) &best_place, sizeof(best_place[0]), "best_place");
-  testalign ((int) &best_pl_line, sizeof(best_pl_line[0]), "best_pl_line");
-  testalign ((int) &hc, sizeof(hc[0]), "hc");
-  testalign ((int) &hu, sizeof(hu[0]), "hu");
-  testalign ((int) &hyf, sizeof(hyf[0]), "hyf");
-/*  testalign ((int) &x, sizeof(x[0]), "x"); */
-
-  testalign ((int) &hyf_distance, sizeof(hyf_distance[0]), "hyf_distance");
-  testalign ((int) &hyf_num, sizeof(hyf_num[0]), "hyf_num");
-  testalign ((int) &hyf_next, sizeof(hyf_next[0]), "hyf_next");
-  testalign ((int) &op_start, sizeof(op_start[0]), "op_start");
-
-/*  testalign ((int) &trie_op_hash, sizeof(trie_op_hash[0]), "trie_op_hash"); */
-  testalign ((int) &zzzaf, sizeof(zzzaf[0]), "zzzaf");
-  testalign ((int) &trie_used, sizeof(trie_used[0]), "trie_used");
-/*  testalign ((int) &trie_op_lang, sizeof(trie_op_lang[0]), "trie_op_lang");*/
-  testalign ((int) &trie_op_val, sizeof(trie_op_val[0]), "trie_op_val");
-
-  testalign ((int) &trie_min, sizeof(trie_min[0]), "trie_min");
-  testalign ((int) &page_so_far, sizeof(page_so_far[0]), "page_so_far");
-  testalign ((int) &write_file, sizeof(write_file[0]), "write_file");
-  testalign ((int) &write_open, sizeof(write_open[0]), "write_open");
-#endif
-}
-
-void check_alloc_align (int flag) {
-  if (testalign ((int) eqtb, sizeof(eqtb[0]), "ALLOCATED ALIGNMENT"))
+  test_align ((int) &zdvibuf, sizeof(zdvibuf[0]), "zdvibuf"); /* no op */
+#endif
+  test_align ((int) &total_stretch, sizeof(total_stretch[0]), "total_stretch");
+  test_align ((int) &total_shrink, sizeof(total_shrink[0]), "total_shrink");
+  test_align ((int) &active_width, sizeof(active_width[0]), "active_width");
+  test_align ((int) &cur_active_width, sizeof(cur_active_width[0]), "cur_active_width");
+  test_align ((int) &background, sizeof(background[0]), "background");
+  test_align ((int) &break_width, sizeof(break_width[0]), "break_width");
+  test_align ((int) &minimal_demerits, sizeof(minimal_demerits[0]), "minimal_demerits");
+  test_align ((int) &best_place, sizeof(best_place[0]), "best_place");
+  test_align ((int) &best_pl_line, sizeof(best_pl_line[0]), "best_pl_line");
+  test_align ((int) &hc, sizeof(hc[0]), "hc");
+  test_align ((int) &hu, sizeof(hu[0]), "hu");
+  test_align ((int) &hyf, sizeof(hyf[0]), "hyf");
+/*  test_align ((int) &x, sizeof(x[0]), "x"); */
+
+  test_align ((int) &hyf_distance, sizeof(hyf_distance[0]), "hyf_distance");
+  test_align ((int) &hyf_num, sizeof(hyf_num[0]), "hyf_num");
+  test_align ((int) &hyf_next, sizeof(hyf_next[0]), "hyf_next");
+  test_align ((int) &op_start, sizeof(op_start[0]), "op_start");
+
+/*  test_align ((int) &trie_op_hash, sizeof(trie_op_hash[0]), "trie_op_hash"); */
+  test_align ((int) &zzzaf, sizeof(zzzaf[0]), "zzzaf");
+  test_align ((int) &trie_used, sizeof(trie_used[0]), "trie_used");
+/*  test_align ((int) &trie_op_lang, sizeof(trie_op_lang[0]), "trie_op_lang");*/
+  test_align ((int) &trie_op_val, sizeof(trie_op_val[0]), "trie_op_val");
+
+  test_align ((int) &trie_min, sizeof(trie_min[0]), "trie_min");
+  test_align ((int) &page_so_far, sizeof(page_so_far[0]), "page_so_far");
+  test_align ((int) &write_file, sizeof(write_file[0]), "write_file");
+  test_align ((int) &write_open, sizeof(write_open[0]), "write_open");
+#endif
+}
+
+void check_alloc_align (int flag)
+{
+  if (test_align ((int) eqtb, sizeof(eqtb[0]), "ALLOCATED ALIGNMENT"))
     show_line("PLEASE RECOMPILE ME!\n", 1);
 #ifdef CHECKALIGNMENT
   if (!flag) return;
 #ifndef ALLOCZEQTB
-  testalign ((int) zeqtb, sizeof(zeqtb[0]), "zeqtb"); 
+  test_align ((int) zeqtb, sizeof(zeqtb[0]), "zeqtb"); 
 #endif
 #ifndef ALLOCATEDVIBUF
-  testalign ((int) &zdvibuf, sizeof(zdvibuf[0]), "zdvibuf");  /* no op */
+  test_align ((int) &zdvibuf, sizeof(zdvibuf[0]), "zdvibuf");  /* no op */
+#endif
+  test_align ((int) str_pool, sizeof(str_pool[0]), "str_pool"); /* no op */
+  test_align ((int) str_start, sizeof(str_start[0]), "str_start");
+  test_align ((int) zmem, sizeof(zmem[0]), "main memory");
+  test_align ((int) font_info, sizeof(font_info[0]), "font memory");
+  test_align ((int) trie_trl, sizeof(trie_trl[0]), "trie_trl");
+  test_align ((int) trie_tro, sizeof(trie_tro[0]), "trie_tro");
+  test_align ((int) trie_trc, sizeof(trie_trc[0]), "trie_trc");
+  test_align ((int) hyph_word, sizeof(hyph_word[0]), "hyph_word");
+  test_align ((int) hyph_list, sizeof(hyph_list[0]), "hyph_list");
+/*  test_align ((int) trie_c, sizeof(trie_c[0]), "trie_c"); *//* no op */
+  test_align ((int) trie_o, sizeof(trie_o[0]), "trie_o");
+  test_align ((int) trie_l, sizeof(trie_l[0]), "trie_l");
+  test_align ((int) trie_r, sizeof(trie_r[0]), "trie_r");
+  test_align ((int) trie_hash, sizeof(trie_hash[0]), "trie_hash");
+  test_align ((int) trie_taken, sizeof(trie_taken[0]), "trie_taken");
 #endif
-  testalign ((int) str_pool, sizeof(str_pool[0]), "str_pool"); /* no op */
-  testalign ((int) str_start, sizeof(str_start[0]), "str_start");
-  testalign ((int) zmem, sizeof(zmem[0]), "main memory");
-  testalign ((int) font_info, sizeof(font_info[0]), "font memory");
-  testalign ((int) trie_trl, sizeof(trie_trl[0]), "trie_trl");
-  testalign ((int) trie_tro, sizeof(trie_tro[0]), "trie_tro");
-  testalign ((int) trie_trc, sizeof(trie_trc[0]), "trie_trc");
-  testalign ((int) hyph_word, sizeof(hyph_word[0]), "hyph_word");
-  testalign ((int) hyph_list, sizeof(hyph_list[0]), "hyph_list");
-/*  testalign ((int) trie_c, sizeof(trie_c[0]), "trie_c"); *//* no op */
-  testalign ((int) trie_o, sizeof(trie_o[0]), "trie_o");
-  testalign ((int) trie_l, sizeof(trie_l[0]), "trie_l");
-  testalign ((int) trie_r, sizeof(trie_r[0]), "trie_r");
-  testalign ((int) trie_hash, sizeof(trie_hash[0]), "trie_hash");
-  testalign ((int) trie_taken, sizeof(trie_taken[0]), "trie_taken");
-#endif
-}
-
-#ifdef HEAPSHOW
-void showaddresses (void)
-{         /* 96/Jan/20 */
-  int c;
-  int d;
-  sprintf(log_line, "STACK %d %d (grows %s) ", &c, &d, (&d > &c) ? "upward" : "downward");
-  show_line(log_line, 0);
-  sprintf(log_line, "eqtb %d hash %d ", zeqtb, zzzae);
-  show_line(log_line, 0);
-  sprintf(log_line, "dvi_buf %d xchr %d xord %d nest %d\n", zdvibuf, xchr, xord, nest);
-  show_line(log_line, 0);
-  sprintf(log_line, "save_stack %d input_stack %d line_stack %d param_stack %d\n",
-       save_stack, input_stack, line_stack, param_stack);
-  show_line(log_line, 0);
-  sprintf(log_line, "font_check %d font_size %d font_dsize %d font_params %d font_name %d\n",
-       font_check, font_size, font_dsize, font_params, font_name);
-  show_line(log_line, 0);
-  sprintf(log_line, "main %d font_info %d str_pool %d str_start %d hyph_word %d hyph_list %d\n",
-      zmem, font_info, str_pool, str_start, hyph_word, hyph_list);
-  show_line(log_line, 0);
 }
-#endif
-
-/* *** *** *** *** *** *** *** NEW APPROACH TO `ENV VARS' *** *** *** *** */
 
-/* grab `env var' from `dviwindo.ini' - or from DOS environment 94/May/19  */
-/* controlled by USEDVIWINDOINI environment variable            94/June/19 */
-
-bool usedviwindo        = true;               /* use [Environment] section in `dviwindo.ini' */
 bool backwardflag       = false;              /* don't cripple all advanced features */
 bool shorten_file_name  = false;              /* don't shorten file names to 8+3 for DOS */
-char *inifilename       = "dviwindo.ini";     /* name of ini file we look for */
-char *dviwindo          = "";                 /* full file name for dviwindo.ini with path */
-char *envsection        = "[Environment]";    /* Env var section in `dviwindo.ini' */
-char *wndsection        = "[Window]";         /* Window section in `dviwindo.ini' */
-char *workdirect        = "WorkingDirectory"; /* key in [Window] section */
 bool usesourcedirectory = true;               /* use source file directory as local when WorkingDirectory is set */
 bool workingdirectory   = false;              /* if working directory set in ini */
-/* set up full file name for dviwindo.ini and check for [Environment] */
-
-bool setupdviwindo (void)
-{ /* set up full file name for dviwindo.ini */
-  char dviwindoini[PATH_MAX];
-  char line[PATH_MAX];
-  FILE *pinput;
-  char *windir;
-  int em = strlen(envsection);
-  int wm = strlen(wndsection);
-  int dm = strlen(workdirect);
-  int wndflag = 0;
-  int envflag = 0;
-
-/*  Easy to find Windows directory if Windows runs */
-/*  Or if user kindly set WINDIR environment variable */
-/*  Or if running in Windows NT */  
-  if ((windir = getenv("windir")) != NULL ||    /* 94/Jan/22 */
-    (windir = getenv("WINDIR")) != NULL ||
-    (windir = getenv("winbootdir")) != NULL ||  /* 95/Aug/14 */
-    (windir = getenv("SystemRoot")) != NULL ||  /* 95/Jun/23 */
-    (windir = getenv("SYSTEMROOT")) != NULL) {  /* 95/Jun/23 */
-    strcpy(dviwindoini, windir);
-    strcat(dviwindoini, "\\");
-    strcat(dviwindoini, inifilename);
-/*    sprintf(log_line, "Using WINDIR %s\n", dviwindoini); */
-  }
-  else {
-    _searchenv (inifilename, "PATH", dviwindoini);
-/*    sprintf(log_line, "Using SEARCHENV %s\n", dviwindoini); */
-  }
-
-  wndflag = envflag = 0;
-/*  workingdirectory = false; */
-  if (*dviwindoini != '\0') {
-    dviwindo = xstrdup(dviwindoini);    /* avoid PATH_MAX string */
-/*    check whether dviwindo.ini actually has [Environment] section */
-    if (share_flag == 0) pinput = fopen(dviwindo, "r");
-    else pinput = _fsopen(dviwindo, "r", share_flag);
-    if (pinput != NULL) {
-      while (fgets (line, sizeof(line), pinput) != NULL) {
-        if (*line == ';') continue;
-        if (*line == '\n') continue;
-        if (*line == '[') {
-          if (wndflag && envflag) break;  /* escape early */
-        }
-        if (_strnicmp(line, wndsection, wm) == 0) {
-          if (trace_flag) {
-            sprintf(log_line, "Found %s", line);  /* DEBUGGING */
-            show_line(log_line, 0);
-          }
-          wndflag++;
-        }
-        else if (_strnicmp(line, envsection, em) == 0) {
-          if (trace_flag) {
-            sprintf(log_line, "Found %s", line);  /* DEBUGGING */
-            show_line(log_line, 0);
-          }
-/*          fclose(input); */
-/*          return true; */
-          envflag++;
-        } else if (wndflag && _strnicmp(line, workdirect, dm) == 0) {
-          if (trace_flag) {
-            sprintf(log_line, "Found %s", line);  /* DEBUGGING */
-            show_line(log_line, 0);
-          }
-          workingdirectory = true;
-        }
-      }
-      if (envflag) {
-        (void) fclose(pinput); 
-        return true;
-      }
-      if (trace_flag)
-        show_line("Failed to find [Environment]", 1); /* DEBUGGING */
-      (void) fclose(pinput);
-    }
-    else if (trace_flag) perrormod(dviwindo);  /* DEBUGGING */
-    strcpy(dviwindo, ""); /* failed, for one reason or another */
-  }
-  return false;
-}
 
 /* cache to prevent allocating twice in a row */
 
-char *lastname=NULL, *lastvalue=NULL;
+char *lastname = NULL, *lastvalue = NULL;
 
 /* get value of env var - try first in dviwindo.ini then DOS env */
 /* returns allocated string -- these strings are not freed again */
 /* is it safe to do that now ? 98/Jan/31 */
 char *grabenv (char *varname)
 {
-  char line[PATH_MAX];
-  FILE *pinput;
   char *s;
-  int m, n;
-/*  int m = strlen(envsection); */
-/*  int n = strlen(varname); */
 
-  if (varname == NULL) return NULL;   /* sanity check */
-  if (*varname == '\0') return NULL;    /* sanity check */
+  if (varname == NULL)
+    return NULL;
+
+  if (*varname == '\0')
+    return NULL;
+
 /*  speedup to avoid double lookup when called from set_paths in ourpaths.c */
 /*  if (lastname != NULL && strcmp(lastname, varname) == 0) { */
-  if (lastname != NULL && _strcmpi(lastname, varname) == 0) {
-    if (trace_flag) {
+  if (lastname != NULL && _strcmpi(lastname, varname) == 0)
+  {
+    if (trace_flag)
+    {
       sprintf(log_line, "Cache hit: %s=%s\n", lastname, lastvalue);
       show_line(log_line, 0);
     }
-/*    return lastvalue; */        /* save some time here */
+
     return xstrdup(lastvalue);
-/*    duplicate so can free safely 98/Jan/31 */
-  }
-
-/*  hmm, following was not xstrdup(...) */ /* not cached */
-  if (usedviwindo == 0 || *dviwindo == '\0') {
-/*    return getenv(varname); */
-    s = getenv(varname);
-    if (s == NULL) return NULL;
-    else return xstrdup(s);       /* make safe 98/Jan/31 */
-  }
-
-  if (share_flag == 0) pinput = fopen(dviwindo, "r");
-  else pinput = _fsopen(dviwindo, "r", share_flag);
-
-  if (pinput != NULL) {
-    m = strlen(envsection);
-/*    search for [Environment] section */ /* should be case insensitive */
-    while (fgets (line, sizeof(line), pinput) != NULL) {
-      if (*line == ';') continue;
-      if (*line == '\n') continue;
-      if (_strnicmp(line, envsection, m) == 0) {  /* 98/Jan/31 */
-/*        search for varname=... */ /* should be case sensitive ? */
-        n = strlen(varname);
-        while (fgets (line, sizeof(line), pinput) != NULL) {
-          if (*line == ';') continue;
-          if (*line == '[') break;
-/*          if (*line == '\n') break; */  /* ??? */
-          if (*line <= ' ') continue;   /* 95/June/23 */
-/*          if (strncmp(line, varname, n) == 0 && */
-          if (_strnicmp(line, varname, n) == 0 &&
-            *(line+n) == '=') { /* found it ? */
-              (void) fclose (pinput);
-/*              flush trailing white space */
-              s = line + strlen(line) - 1;
-              while (*s <= ' ' && s > line) *s-- = '\0';
-              if (trace_flag) { /* DEBUGGING ONLY */
-                sprintf(log_line, "%s=%s\n", varname, line+n+1);
-                show_line(log_line, 0);
-              }
-              s = line+n+1;
-              if (lastname != NULL) free(lastname);
-              lastname = xstrdup (varname);
-              if (lastvalue != NULL) free(lastvalue);
-              lastvalue = xstrdup(s);
-              return xstrdup(s);    /* 98/Jan/31 */
-          }   /* end of matching varname */
-        }     /* end of while fgets */
-/*        break; */ /* ? not found in designated section */    
-      }       /* end of search for [Environment] section */
-    }
-    (void) fclose (pinput);
-  }           /* end of if fopen */
-  s = getenv(varname);    /* failed, so try and get from environment */
-/*  if (s != NULL) return s;  */
-  if (s != NULL) {
-/*    sdup = xstrdup(s); */   /* just to be safe --- 1995/Jan/31 */
-    if (lastname != NULL) free(lastname);
+  }
+
+  s = getenv(varname);
+
+  if (s != NULL)
+  {
+    if (lastname != NULL)
+      free(lastname);
+
     lastname = xstrdup (varname);
-    if (lastvalue != NULL) free(lastvalue);
-    lastvalue = xstrdup(s);   /* remember in case asked again ... */
-/*    return sdup; */
-    return xstrdup(s);    /* 98/Jan/31 */
+
+    if (lastvalue != NULL)
+      free(lastvalue);
+
+    lastvalue = xstrdup(s);
+
+    return xstrdup(s);
   }
-  else return NULL;   /* return NULL if not found anywhere */
+  else
+    return NULL;
 }
 
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 
-void flush_trailing_slash (char *directory){
+void flush_trailing_slash (char *directory)
+{
   char *s;
 /*  flush trailing \ or / in directory, if any 1993/Dec/12 */
-  if (strcmp(directory, "") != 0) {
+  if (strcmp(directory, "") != 0)
+  {
     s = directory + strlen(directory) - 1;
-    if (*s == '\\' || *s == '/') *s = '\0';
+
+    if (*s == '\\' || *s == '/')
+      *s = '\0';
   }
 }
 
@@ -2407,36 +2294,37 @@ void knuthify (void)
   knuth_flag = true;       /* so other code can know about this */
 } /* end of knuthify */
 
-/* following have already been used up */
-
-/* abcdefghijklmnopqrstuvwxyz */
-
-/* ABCDEFGHIJKLMNOPQRSTUVWXYZ */
-
-/* ........ */
-
-int nohandler = 0;    /* experiment to avoid Ctrl-C interrupt handler */
-
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 
 /* following made global so analyze_flag can be made separate procedure */
 
-// char *xchrfile=""; /* save space use xstrdup */
-char *xchrfile = NULL; /* save space use xstrdup */
-// char *replfile="";/* save space use xstrdup */
-char *replfile = NULL;/* save space use xstrdup */
-
-/* abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ */
+char * xchrfile = NULL;
+char * replfile = NULL;
 
-/* analyze command line flag or argument */
-/* c is the flag letter itself, while optarg is start of arg if any */
-
-/* when making changes, revise allowedargs */
+char * short_options = "viKLZMdp2t?u";
 
+static struct option long_options[] =
+{
+  //{"interaction",   1, 0, 0},
+  {"verbose",       0, 0, 'v'},
+  {"initex",        0, 0, 'i'},
+  {"knuthify",      0, 0, 'K'},
+  {"cstyle",        0, 0, 'L'},
+  {"showtfm",       0, 0, 'Z'},
+  {"showmissing",   0, 0, 'M'},
+  {"deslash",       0, 0, 'd'},
+  {"patterns",      0, 0, 'p'},
+  {"suppressflig",  0, 0, '2'},
+  {"trace",         0, 0, 't'},
+  {"help",          0, 0, '?'},
+  {"usage",         0, 0, 'u'},
+  {NULL,            0, 0, 0}
+};
 
 int analyze_flag (int c, char *optarg)
 {
-  switch (c)  {
+  switch (c)
+  {
     case 'v':
       want_version = true;
       verbose_flag = true;
@@ -2519,9 +2407,6 @@ int analyze_flag (int c, char *optarg)
       break;
 /*  case 'X':  truncate_long_lines = false; */ /* 98/Feb/2 */
               /* break; */
-    case 'W':
-      usedviwindo = false; /* 94/May/19 */
-      break;
     case 'J':
       show_line_break_stats = false; /* 96/Feb/8 */
       break;
@@ -2537,13 +2422,6 @@ int analyze_flag (int c, char *optarg)
     case '2':
       suppress_f_ligs = true; /* 99/Jan/5 f-lig */
       break;
-/* following are pretty obscure */
-/*  case 'y': cache_file_flag = false; */ /* 96/Nov/16 */
-/*            break; */
-/*  case 'r': return_flag = false; */ /* flipped 93/Nov/18 */
-/*            break; */
-/*  case 'z': trimeof = false; */ /* 93/Nov/24 */
-/*            break; */
     case 'z':
       full_file_name_flag = false; // 00 Jun 18
       break;
@@ -2694,6 +2572,10 @@ int analyze_flag (int c, char *optarg)
       if (strcmp(dvi_directory, "") == 0)
         complainarg(c, optarg);
       break;
+    case '0':
+      if (optarg == 0)
+        pdf_output_flag = true;
+      break;
     case 'l':
       if (optarg == 0)
         log_directory = "";
@@ -2719,38 +2601,14 @@ int analyze_flag (int c, char *optarg)
   return 0;
 }
 
-/* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-//char *yytexcmd="yandytex.cmd";
-char *yytexcmd="YANDYTEX.CMD";    /* name of command line file */
-
-/* Try and read default command file - YANDYTEX.CMD */
-/* in current directory and then in directory of YANDYTEX */
-/* (does not make sense in TeX file directory) */
-/* since we don't yet know where that is ! */
-/* can't conveniently include this in output file either - not open yet */
-
-/* used both for yytex.cmd and @ indirect command line files */
-/* can this be reentered ? */
-
-/* supply extension if none */
-void yy_extension (char *fname, char *ext)
-{
-  char *s, *t;
-    if ((s = strrchr(fname, '.')) == NULL ||
-    ((t = strrchr(fname, '\\')) != NULL && s < t)) {
-      strcat(fname, "."); 
-      strcat(fname, ext);
-  }
-}
-
 /* remove file name - keep only path - inserts '\0' to terminate */
 
 void strip_name (char *pathname)
 {
   char *s;
-  if ((s=strrchr(pathname, '\\')) != NULL);
-  else if ((s=strrchr(pathname, '/')) != NULL);
-  else if ((s=strrchr(pathname, ':')) != NULL) s++;
+  if ((s = strrchr(pathname, '\\')) != NULL);
+  else if ((s = strrchr(pathname, '/')) != NULL);
+  else if ((s = strrchr(pathname, ':')) != NULL) s++;
   else s = pathname;
   *s = '\0';
 }
@@ -2762,151 +2620,79 @@ char *programpath = ""; /* pathname of program */
 
 /* The following does not deslashify arguments ? Do we need to ? */
 
-int read_commands (char *filename)
-{
-  char commandfile[PATH_MAX]; 
-  FILE *command;
-  char line[PATH_MAX];
-  char *linedup;      /* need to copy line to preserve args */
-  char *s;
-/*  char *sn; */
-  char *optarg;
-  int c;
-
-/*  Try first in current directory (or use full name as specified) */
-  strcpy(commandfile, filename);
-  yy_extension(commandfile, "cmd");
-  if (share_flag == 0)
-         command = fopen(commandfile, "r");
-  else
-         command = _fsopen(commandfile, "r", share_flag);
-  if (command == NULL) {
-/*    If that fails, try in YANDYTeX program directory */
-    strcpy(commandfile, programpath);
-/*    don't need fancy footwork, since programpath non-empty */
-    strcat(commandfile, "\\");
-    strcat(commandfile, filename);
-    yy_extension(commandfile, "cmd");
-    if (share_flag == 0)
-               command = fopen(commandfile, "r");
-    else
-               command = _fsopen(commandfile, "r", share_flag);
-    if (command == NULL) {
-/*      perrormod(commandfile); */      /* debugging only */
-/*      strcpy(commandfile, ""); */   /* indicate failed */
-      return 0;       /* no command line file YYTEX.CMD */
-    }
-  }
-
-/*  allow for multiple lines --- ignore args that don't start with `-' */
-  while (fgets(line, PATH_MAX, command) != NULL) {
-/*    sprintf(log_line, "From %s:\t%s", commandfile, line); */
-/*    skip over comment lines and blank lines */
-    if (*line == '%' || *line == ';' || *line == '\n') continue;
-    if (strchr(line, '\n') == NULL) strcat(line, "\n");
-/*    sfplogline, rintf("From %s:\t%s", commandfile, line); */
-    linedup = xstrdup (line);         /* 93/Nov/15 */
-    if (linedup == NULL) {
-      show_line("ERROR: out of memory\n", 1);    /* read_commands */
-//      exit(1);
-      return -1;    // failure
-    }
-    s = strtok(linedup, " \t\n\r");       /* 93/Nov/15 */
-    while (s != NULL) {
-      if (*s == '-' || *s == '/') {
-        c = *(s+1);
-        optarg = s+2;
-/*        if (*optarg = '=') optarg++; */
-        if (*optarg == '=') optarg++;
-        if (analyze_flag(c, optarg) < 0) return -1;  // failure ???
-      }
-/*      else break; */              /* ignore non-flag items */
-      s = strtok(NULL, " \t\n\r");      /* go to next token */
-    }
-/*    If you want to see command lines in file - put -v in the file */
-/*    if (verbose_flag != 0) sprintf(log_line, "From %s:\t%s", commandfile, line); */
-  }
-  (void) fclose(command);   /* no longer needed */
-  return 1;       // success
-}
-
 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
 
 /* try and read commands on command line */
 int read_command_line (int ac, char **av)
 { 
   int c;
-  char *optargnew;  /* equal to optarg, unless that starts with `='      */
-                    /* in which case it is optarg+1 to step over the `=' */
-                    /* if optarg = 0, then optargnew = 0 also            */
+  char *optargnew;
+  int option_idx = 0;
 
-//  show_line("read_command_line\n", 0);
-  if (ac < 2) return 0;     /* no args to analyze ? 94/Apr/10 */
+  if (ac < 2)
+    return 0;
 
-/*  while ((c = getopt(ac, av, "+vitrdczp?m:h:x:E:")) != EOF) {              */
-/*  NOTE: keep `Y' in there for `do not reorder arguments !                  */
-/*  WARNING: if adding flags, change also `allowedargs' and  `takeargs' !!!! */
-  while ((c = getopt(ac, av, allowedargs)) != EOF) {
+  while ((c = getopt_long_only(ac, av, short_options, long_options, &option_idx)) != EOF)
+  {
     if (optarg != 0 && *optarg == '=')
-      optargnew = optarg+1;
+      optargnew = optarg + 1;
     else
       optargnew = optarg;
+
     analyze_flag (c, optargnew);
   }
-  if (show_use || quitflag == 3) {
-//    showversion (stdout);
+
+  if (show_use || quitflag == 3)
+  {
     stamp_it(log_line);
     strcat(log_line, "\n");
     show_line(log_line, 0);
     stampcopy(log_line);
     strcat(log_line, "\n");
     show_line(log_line, 0);
-    if (show_use) show_usage(av[0]);
-    else if (quitflag == 3) {
+
+    if (show_use)
+      show_usage();
+    else if (quitflag == 3)
+    {
       strcat(log_line, "\n");
       show_line(log_line, 0);
     }
-//    exit (0);
+
     return -1;        // failure
   } 
-#ifdef DEBUG
-  if (floating) testfloating();   /* debugging */
-#endif
 
-  if (replfile != NULL && *replfile != '\0') {  /* read user defined replacement */
-    if (read_xchr_file(replfile, 1, av)) {
-      if (trace_flag) show_line("KEY REPLACE ON\n", 0);
+  if (replfile != NULL && *replfile != '\0')
+  {
+    if (read_xchr_file(replfile, 1, av))
+    {
+      if (trace_flag)
+        show_line("KEY REPLACE ON\n", 0);
+
       key_replace = true;
     }
   } 
-/*  key_replace used in texmf.c (input_line) */
-  if (xchrfile != NULL && *xchrfile != '\0') {  /* read user defined xchr[] */
-    if (read_xchr_file(xchrfile, 0, av)) {
-      if (trace_flag) show_line("NON ASCII ON\n", 0);
+
+  if (xchrfile != NULL && *xchrfile != '\0')
+  {
+    if (read_xchr_file(xchrfile, 0, av))
+    {
+      if (trace_flag)
+        show_line("NON ASCII ON\n", 0);
+
       non_ascii = true;
     }
   } 
-/*  non_ascii used in texmf.c (t_open_in & input_line & call_edit) */
-/*  see also xchr [] & xord [] use in tex3.c and itex.c */
-  return 0;
-}
 
-#ifdef IGNORED
-void uppercase (char *s) {
-  int c;
-  while ((c = *s) != '\0') {
-/*    if (islower(c)) *s = toupper (*s); */
-    *s = toupper (*s);
-    s++;
-  }
+  return 0;
 }
-#endif
 
 int init_commands (int ac, char **av)
 {
 /*  NOTE: some defaults changed 1993/Nov/18 */
 /*  want_version = show_use = switchflag = return_flag = false;
   is_initex = trace_flag = deslash = non_ascii = false; */
+  pdf_output_flag   = false;
   is_initex         = false; /* check for dumping format file */
   allow_patterns    = false; /* using \pattern after format file loaded */
   reset_exceptions  = false;
@@ -2956,8 +2742,7 @@ int init_commands (int ac, char **av)
   errout                = stdout;    /* as opposed to stderr say --- used ??? */
   abort_flag            = 0;      // not yet hooked up ???
   err_level             = 0;     // not yet hooked up ???
-
-  new_hyphen_prime = 0;
+  new_hyphen_prime      = 0;
 #ifdef VARIABLETRIESIZE
 /*  trie_size = default_trie_size; */
   trie_size = 0;
@@ -2976,23 +2761,18 @@ int init_commands (int ac, char **av)
   programpath = xstrdup(av[0]); /* extract path executable */
   strip_name(programpath); /* strip off yandytex.exe */
 
-  //format_name = "yandytex";
   format_name = "plain"; /* format name if specified on command line */
 
   encoding_name = "";
 
-  if (read_commands(yytexcmd) < 0)   /* read yandytex.cmd 1994/July/12 */
-    return -1;            // in case of error
-
   if (read_command_line(ac, av) < 0)  /* move out to subr 94/Apr/10 */
     return -1;            // in case of error
 
-  if (optind == 0) optind = ac;   /* no arg case paranoia 94/Apr/10 */
+  if (optind == 0)
+    optind = ac;
 
-/*  Print version *after* banner ? */ /* does this get in log file ? */
-  if (want_version) {
-//  showversion (stdout);
-//  showversion (log_line);
+  if (want_version)
+  {
     stamp_it(log_line);
     strcat(log_line, "\n");
     show_line(log_line, 0);
@@ -3000,88 +2780,101 @@ int init_commands (int ac, char **av)
     strcat(log_line, "\n");
     show_line(log_line, 0);
   }
-/*  if (show_use) show_usage(av[0]);   */  /* show usage and quit */
 
 /*  if we aren't including current directory in any directory lists */
 /*  then makes no sense to avoid them separately for TFM files ... */
 /*  (that is, the ./ is already omitted from the dir list in that case */
-  if (!current_flag && !current_tfm) current_tfm = true; /* 94/Jan/24 */
-  return 0;               // success
+  if (!current_flag && !current_tfm)
+    current_tfm = true; /* 94/Jan/24 */
+
+  return 0;
 }
 
 /* E sets environment variable ? */
 
 void initial_memory (void)
-{   /* set initial memory allocations */
-    if (mem_extra_high < 0) mem_extra_high = 0;
-    if (mem_extra_low < 0) mem_extra_low = 0;
-    if (mem_initex < 0) mem_initex = 0;
-    if (is_initex) {
+{
+  /* set initial memory allocations */
+  if (mem_extra_high < 0)
+    mem_extra_high = 0;
+
+  if (mem_extra_low < 0)
+    mem_extra_low = 0;
+
+  if (mem_initex < 0)
+    mem_initex = 0;
+
+  if (is_initex)
+  {
  #if defined(ALLOCATEHIGH) || defined(ALLOCATELOW)
-      if (mem_extra_high != 0 || mem_extra_low != 0) {
-        show_line("ERROR: Cannot extend main memory in iniTeX\n", 1);
-        mem_extra_high = 0;   mem_extra_low = 0;
-      }
- #endif
-    } else {
-      if (mem_initex != 0) {
-        show_line("ERROR: Can only set initial main memory size in iniTeX\n", 1);
-        mem_initex = 0;
-      }
-      if (trie_size != 0) {
-        show_line("ERROR: Need only set hyphenation trie size in iniTeX\n", 1);
-/*        trie_size = 0; */
-      }
+    if (mem_extra_high != 0 || mem_extra_low != 0)
+    {
+      show_line("ERROR: Cannot extend main memory in iniTeX\n", 1);
+      mem_extra_high = 0;   mem_extra_low = 0;
     }
-    if (mem_initex == 0) mem_initex = default_mem_top;
-    if (trie_size == 0) trie_size = default_trie_size;
+#endif
+  }
+  else
+  {
+    if (mem_initex != 0)
+    {
+      show_line("ERROR: Can only set initial main memory size in iniTeX\n", 1);
+      mem_initex = 0;
+    }
+
+    if (trie_size != 0)
+    {
+      show_line("ERROR: Need only set hyphenation trie size in iniTeX\n", 1);
+/* trie_size = 0; */
+    }
+  }
+  if (mem_initex == 0)
+    mem_initex = default_mem_top;
+  if (trie_size == 0)
+    trie_size = default_trie_size;
 /* Just in case user mistakenly specified words instead of kilo words */
-    if (mem_extra_high > 10000L * 1024L) mem_extra_high = mem_extra_high / 1024;
-    if (mem_extra_low > 10000L * 1024L) mem_extra_low = mem_extra_low / 1024;
-    if (mem_initex > 10000L * 1024L) mem_initex = mem_initex / 1024;
+  if (mem_extra_high > 10000L * 1024L) mem_extra_high = mem_extra_high / 1024;
+  if (mem_extra_low > 10000L * 1024L) mem_extra_low = mem_extra_low / 1024;
+  if (mem_initex > 10000L * 1024L) mem_initex = mem_initex / 1024;
 #ifdef ALLOCATEHIGH         /* not used anymore */
-    if (mem_extra_high > 2048L * 1024L) { /* extend SW area by 16 mega byte! */
-      show_line(
-      "WARNING: There may be no benefit to asking for so much memory\n", 0); 
-      mem_extra_high = 2048 * 1024; /* limit to SW to 4 x VLR */
-    }
+  if (mem_extra_high > 2048L * 1024L) { /* extend SW area by 16 mega byte! */
+    show_line("WARNING: There may be no benefit to asking for so much memory\n", 0);
+    mem_extra_high = 2048 * 1024; /* limit to SW to 4 x VLR */
+  }
 #endif
 #ifdef ALLOCATELOW          /* not used anymore */
-    if (mem_extra_low > 2048L * 1024L) { /* extend VL area by 16 mega byte! */
-      show_line(
-      "WARNING: There may be no benefit to asking for so much memory\n", 0); 
-      mem_extra_low = 2048 * 1024; /* limit VLR to 4 x SW */
-    }
+  if (mem_extra_low > 2048L * 1024L) { /* extend VL area by 16 mega byte! */
+    show_line("WARNING: There may be no benefit to asking for so much memory\n", 0);
+    mem_extra_low = 2048 * 1024; /* limit VLR to 4 x SW */
+  }
 #endif
-    if (mem_initex > 2048L * 1024L) { /* extend main memory by 16 mega byte! */
-      show_line(
-      "WARNING: There may be no benefit to asking for so much memory\n", 0); 
-/*      mem_initex = 2048 * 1024; */
-    }
+  if (mem_initex > 2048L * 1024L) { /* extend main memory by 16 mega byte! */
+    show_line("WARNING: There may be no benefit to asking for so much memory\n", 0);
+/* mem_initex = 2048 * 1024; */
+  }
  #ifdef ALLOCATEDVIBUF
-    if (dvi_buf_size == 0) dvi_buf_size = default_dvi_buf_size;
-    /* if less than 1024 assume user specified kilo-bytes, not bytes */
-    if (dvi_buf_size < 1024) dvi_buf_size = dvi_buf_size * 1024;
-    if (dvi_buf_size % 8 != 0)        /* check multiple of eight */
-       dvi_buf_size = (dvi_buf_size / 8 + 1) * 8;
+  if (dvi_buf_size == 0) dvi_buf_size = default_dvi_buf_size;
+/* if less than 1024 assume user specified kilo-bytes, not bytes */
+  if (dvi_buf_size < 1024) dvi_buf_size = dvi_buf_size * 1024;
+  if (dvi_buf_size % 8 != 0)        /* check multiple of eight */
+    dvi_buf_size = (dvi_buf_size / 8 + 1) * 8;
  #endif
-    if (new_hyphen_prime < 0) new_hyphen_prime = 0;
-    if (new_hyphen_prime > 0) {
-      if (! is_initex) 
-        show_line("ERROR: Can only set hyphen prime in iniTeX\n", 1);
-      else {
-        if (new_hyphen_prime % 2 == 0) new_hyphen_prime++;
-        while (!prime(new_hyphen_prime)) new_hyphen_prime = new_hyphen_prime+2;
-        if (trace_flag) {
-          sprintf(log_line, "Using %d as hyphen prime\n", new_hyphen_prime);
-          show_line(log_line, 0);
-        }
+  if (new_hyphen_prime < 0) new_hyphen_prime = 0;
+  if (new_hyphen_prime > 0) {
+    if (! is_initex)
+      show_line("ERROR: Can only set hyphen prime in iniTeX\n", 1);
+    else {
+      if (new_hyphen_prime % 2 == 0) new_hyphen_prime++;
+      while (!prime(new_hyphen_prime)) new_hyphen_prime = new_hyphen_prime+2;
+      if (trace_flag) {
+        sprintf(log_line, "Using %d as hyphen prime\n", new_hyphen_prime);
+        show_line(log_line, 0);
       }
     }
-
-    if (percent_grow > 100) percent_grow = percent_grow - 100;
-    if (percent_grow > 100) percent_grow = 100;   /* upper limit - double */
-    if (percent_grow < 10) percent_grow = 10;   /* lower limit - 10% */
+  }
+  if (percent_grow > 100) percent_grow = percent_grow - 100;
+  if (percent_grow > 100) percent_grow = 100;   /* upper limit - double */
+  if (percent_grow < 10) percent_grow = 10;   /* lower limit - 10% */
 }
 
 /**********************************************************************/
@@ -3107,7 +2900,8 @@ void checkpause (int flag)
   int debug_pause = 0;
 /*  don't stop if in Q (quiet) or R (run) mode */
 /*  stop only in S (scroll) and T (TeX) mode */
-  if (interaction >= 0 && interaction < 2) flag = 0;    /* 98/Jun/30 */
+  if (interaction >= 0 && interaction < 2)
+    flag = 0;    /* 98/Jun/30 */
   s = grabenv("DEBUGPAUSE");
   if (s != NULL) sscanf(s, "%d", &debug_pause);
   if (flag < 0) return;
@@ -3122,28 +2916,6 @@ void checkpause (int flag)
   }
 }
 
-void check_enter (int argc, char *argv[])
-{/* 95/Oct/28 */
-  int m;
-  char current[FILENAME_MAX];
-  if (grabenv("DEBUGPAUSE") != NULL) {
-    (void) _getcwd(current, sizeof(current));
-    sprintf(log_line, "Current directory: `%s'\n", current);
-    show_line(log_line, 0);
-    for (m = 0; m < argc; m++) {
-      sprintf(log_line, "%2d: `%s'\n", m, argv[m]); 
-      show_line(log_line, 0);
-    }
-    checkpause(-1);
-  }
-}
-
-#ifdef IGNORED
-void checkexit (int n) {              /* 95/Oct/28 */
-  checkpause(1);
-  exit(n);
-}
-#endif
 
 /*************************************************************************/
 
@@ -3155,15 +2927,18 @@ void checkexit (int n) {              /* 95/Oct/28 */
 
 void hidetwiddle (char *name)
 {
-  char *s=name;
+  char *s = name;
+
 #ifdef DEBUGTWIDDLE
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "Hidetwiddle %s", name);
     show_line(log_line, 0);
   }
 #endif
 /*  while (*s != '\0' && *s != ' ') { */
-  while (*s != '\0')  {
+  while (*s != '\0')
+  {
     if (*s == '~' && pseudo_tilde != 0)
       *s = (char) pseudo_tilde;  /* typically 254 */
     else if (*s == ' ' && pseudo_space != 0)
@@ -3171,7 +2946,8 @@ void hidetwiddle (char *name)
     s++;
   }
 #ifdef DEBUGTWIDDLE
-  if (trace_flag) {
+  if (trace_flag)
+  {
     sprintf(log_line, "=> %s\n", name);
     show_line(log_line, 0);
   }
@@ -3183,20 +2959,16 @@ void deslash_all (int ac, char **av)
   char buffer[PATH_MAX];  
   char *s;
 
-  if ((s = getenv("USEDVIWINDOINI")) != NULL) 
-    sscanf(s, "%d", &usedviwindo);      /* 94/June/14 */
-
-  if (usedviwindo) setupdviwindo();   // moved to yandytex ?
-
-  check_enter(ac, av);           /* 95/Oct/28 */
-
 /* environment variables for output directories (as in PC TeX) */
 
   if ((s = grabenv("TEXDVI")) != NULL) dvi_directory = s;
   if ((s = grabenv("TEXLOG")) != NULL) log_directory = s;
   if ((s = grabenv("TEXAUX")) != NULL) aux_directory = s;
+  if ((s = grabenv("TEXFMT")) != NULL) fmt_directory = s;
+  if ((s = grabenv("TEXPDF")) != NULL) pdf_directory = s;
 
   strcpy(buffer, av[0]);            /* get path to executable */
+
   if ((s = strrchr(buffer, '\\')) != NULL) *(s+1) = '\0';
   else if ((s = strrchr(buffer, '/')) != NULL) *(s+1) = '\0';
   else if ((s = strrchr(buffer, ':')) != NULL) *(s+1) = '\0';
@@ -3209,18 +2981,22 @@ void deslash_all (int ac, char **av)
   if (strcmp(dvi_directory, "") != 0) flush_trailing_slash (dvi_directory);
   if (strcmp(log_directory, "") != 0) flush_trailing_slash (log_directory);
   if (strcmp(aux_directory, "") != 0) flush_trailing_slash (aux_directory);
+  if (strcmp(fmt_directory, "") != 0) flush_trailing_slash (fmt_directory);
+  if (strcmp(pdf_directory, "") != 0) flush_trailing_slash (pdf_directory);
 
-  if (deslash) {
+  if (deslash)
+  {
       unixify (texpath);          /* 94/Jan/25 */
 /* if output directories given, deslashify them also 1993/Dec/12 */
       if (strcmp(dvi_directory, "") != 0) unixify(dvi_directory);
       if (strcmp(log_directory, "") != 0) unixify(log_directory);
       if (strcmp(aux_directory, "") != 0) unixify(aux_directory);
+      if (strcmp(fmt_directory, "") != 0) unixify(fmt_directory);
+      if (strcmp(pdf_directory, "") != 0) unixify(pdf_directory);
   }
 
 /*  deslash TeX source file (and format, if format specified) */
 /*  and check args to see whether format was specified */
-
   format_spec = 0;
 /*  NOTE: assuming that command line arguments are in writable memory ! */
 /*  if (trace_flag || debug_flag)
@@ -3263,11 +3039,6 @@ void deslash_all (int ac, char **av)
 
 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
 
-/* interaction == 0 => batch mode (omit all stops and omit terminal output) */
-/* interaction == 1 => nonstop mode (omit all stops)                        */
-/* interaction == 2 => scroll mode (omit error stops)                       */
-/* interaction == 3 => error_stop mode (stops at every opportunity)         */
-
 /* main entry point follows */
 
 /* this gets called pretty much right away in `main' in texmf.c */
@@ -3275,29 +3046,22 @@ void deslash_all (int ac, char **av)
 /* note: those optarg == 0 test don't really work ... */
 /* note: optarg starts at = in case of x=... */
 
-int init (int ac, char **av)
+int main_init (int ac, char **av)
 {
   char initbuffer[PATH_MAX];
   int k;
-  
-  debugfile = getenv("TEXDEBUG");     /* 94/March/28 */
-  if (debugfile)
-    debug_flag = 1;
-  else
-    debug_flag = 0;
 
-  if (debug_flag) {
-    show_line("TEXDEBUG\n", 0);
-    trace_flag = 1;            /* 94/April/14 */
-  }
+  kpse_set_program_name(av[0], NULL);
 
-  if (sizeof(memory_word) != 8) {  /* compile time test */
+  // compile time test
+  if (sizeof(memory_word) != 8)
+  {
     sprintf(log_line, "ERROR: Bad word size %d!\n", sizeof(memory_word));
     show_line(log_line, 1);
   }
 
-  start_time = clock();    /* get time */
-  main_time = start_time;   /* fill in, in case file never opened */
+  start_time = clock();
+  main_time = start_time;
 
   initbuffer[0] = '\0';         /* paranoia 94/Apr/10 */
 
@@ -3306,57 +3070,60 @@ int init (int ac, char **av)
   font_info = NULL;
   str_pool = NULL;
   str_start = NULL;
-#ifdef ALLOCATEZEQTB
-  zeqtb = NULL;
-#endif
-#ifdef ALLOCATEHASH
-  zzzae = NULL;
-#endif
+
 #ifdef ALLOCATESAVESTACK
   save_stack = NULL; 
 #endif
-#ifdef ALLOCATEDVIBUF
-  zdvibuf = NULL; 
-#endif
+
 #ifdef ALLOCATEBUFFER
   buffer = NULL;        /* new 1999/Jan/7 need to do early */
   current_buf_size = 0;
   buffer = realloc_buffer (initial_buf_size);
-/*  sprintf(log_line, "buffer %x, current_buf_size %d\n", buffer, current_buf_size); */
 #endif
-  hyph_list = NULL;  hyph_word = NULL;
-  trie_taken = NULL; trie_hash = NULL;
-  trie_r = NULL; trie_c = NULL; trie_o = NULL; trie_l = NULL;
-  trie_trc = NULL; trie_tro = NULL; trie_trl = NULL;
+
+  hyph_list = NULL;
+  hyph_word = NULL;
+  trie_taken = NULL;
+  trie_hash = NULL;
+  trie_r = NULL;
+  trie_c = NULL;
+  trie_o = NULL;
+  trie_l = NULL;
+  trie_trc = NULL;
+  trie_tro = NULL;
+  trie_trl = NULL;
 
   log_opened = false;       /* so can tell whether opened */
-  interaction = -1;       /* default state => 3 */
-  missing_characters = 0;      /* none yet! */
-  workingdirectory = false;   /* set from dviwindo.ini & command line */
-  font_dimen_zero = true;     /* \fontdimen0 for checksum 98/Oct/5 */
-  ignore_frozen = false;     /* default is not to ignore 98/Oct/5 */
-  suppress_f_ligs = false;      /* default is not to ignore f-ligs */
-/*  if (*av[1] == '-Y') reorder_arg_flag = false; */  /* 94/April/14 */
-  if (ac > 1 && *av[1] == '-Y') reorder_arg_flag = false;
+  interaction = -1;         /* default state => 3 */
+  missing_characters = 0;   /* none yet! */
+  workingdirectory = false; /* set from dviwindo.ini & command line */
+  font_dimen_zero = true;   /* \fontdimen0 for checksum 98/Oct/5 */
+  ignore_frozen = false;    /* default is not to ignore 98/Oct/5 */
+  suppress_f_ligs = false;  /* default is not to ignore f-ligs */
+
+  if (ac > 1 && !strncmp(av[1], "-Y", 2))
+    reorder_arg_flag = false;
 
-  if (reorder_arg_flag) reorderargs(ac, av);  
+  if (reorder_arg_flag)
+    reorderargs(ac, av);  
 
   if (init_commands(ac, av))
     return -1;          // failure
 
   check_fixed_align(trace_flag);       /* sanity check 1994/Jan/8 */
 
-  format_file   = NULL;       /* to be set in openinou.c 94/Jun/21 */
-  string_file   = NULL;       /* to be set in openinou.c 96/Jan/15 */
-  source_direct = NULL;       /* to be set in openinou.c 98/Sep/29 */
-  dvi_file_name = NULL;       /* to be set in openinou.c 00/Jun/18 */
-  log_file_name = NULL;       /* to be set in openinou.c 00/Jun/18 */
+  format_file   = NULL;
+  string_file   = NULL;
+  source_direct = NULL;
+  dvi_file_name = NULL;
+  log_file_name = NULL;
+  pdf_file_name = NULL;
 
   first_pass_count  = 0;
   second_pass_count = 0;
   final_pass_count  = 0;
   paragraph_failed  = 0;
-  singleline        = 0;
+  single_line       = 0;
   overfull_hbox     = 0;
   underfull_hbox    = 0;
   overfull_vbox     = 0;
@@ -3364,79 +3131,72 @@ int init (int ac, char **av)
 
   closed_already=0;        // so can only do once
 
-  if (trace_flag) show_line("Entering init (local)\n", 0);
-
-/*   Print version *after* banner ? */ /* does this get in log file ? */
+  if (trace_flag)
+    show_line("Entering init (local)\n", 0);
 
   probe_memory();             /* show top address */
   ini_max_address = max_address;       /* initial max address */
-  if (trace_flag) show_maximums(stdout);
-#ifdef HEAPWALK
-  if (heap_flag) (void) heap_dump(stdout, 1);
-#endif
+
+  if (trace_flag)
+    show_maximums(stdout);
 
   initial_memory();
 
   deslash_all(ac, av);    /* deslash and note if format specified */
 
-/*  sprintf(log_line, "%s\n", initbuffer); */    /* debugging, remove later */
-
   no_interrupts = 0;
 
-  if (format_spec && mem_spec_flag) {
+  if (format_spec && mem_spec_flag)
+  {
     show_line("WARNING: Cannot change initial main memory size when format specified", 1);
   }
 
-   if (allocate_memory() != 0)   /* NOW, try and ALLOCATE MEMORY if needed */
-     return -1;         // if failed to allocate
+  if (allocate_memory() != 0)   /* NOW, try and ALLOCATE MEMORY if needed */
+    return -1;         // if failed to allocate
 
 /*   following is more or less useless since most all things not yet alloc */
    check_alloc_align(trace_flag);    /* sanity check 1994/Jan/8 */
-#ifdef HEAPSHOW
-   if (trace_flag) showaddresses();  /* debugging only 1996/Jan/20 */
-#endif
 
-#ifdef HEAPWALK
-/*   if (heap_flag) heap_dump(stdout, 1); */  /* redundant ? */
-#endif
+  if (trace_flag)
+    show_line("Leaving init (local)\n", 0);
 
-    if (trace_flag) show_line("Leaving init (local)\n", 0);
-    return 0;         // success
+  return 0;         // success
 }
 
-/* #define CLOCKS_PER_SEC 1000 */ /* #define CLK_TCK  CLOCKS_PER_SEC */
+#define CLK_TCK  CLOCKS_PER_SEC
 
-/* void show_inter_val (clock_t start, clock_t end) { */
 void show_inter_val (clock_t interval)
 {
-/*  clock_t interval; */
-/*  int seconds, tenths; */
-/*  int seconds, tenths, hundredth;  */
   int seconds, tenths, hundredth, thousands;
-/*  interval = end - start; */
-/*  sanity check whether positive ? */
-  if (interval >= CLK_TCK * 10) {
+
+  if (interval >= CLK_TCK * 10)
+  {
     tenths = (interval * 10 + CLK_TCK / 2) / CLK_TCK; 
     seconds = tenths / 10; 
     tenths = tenths % 10;
     sprintf(log_line, "%d.%d", seconds, tenths);
     show_line(log_line, 0);
   }
-  else if (interval >= CLK_TCK) {       /* 94/Feb/25 */
-    hundredth = (interval * 100 + CLK_TCK / 2) / CLK_TCK; 
-    seconds = hundredth / 100;
-    hundredth = hundredth % 100;
-    sprintf(log_line, "%d.%02d", seconds, hundredth);
-    show_line(log_line, 0);
-  }
-  else if (interval > 0) {          /* 94/Oct/4 */
-    thousands = (interval * 1000 + CLK_TCK / 2) / CLK_TCK;  
-    seconds = thousands / 1000;
-    thousands = thousands % 1000;
-    sprintf(log_line, "%d.%03d", seconds, thousands);
-    show_line(log_line, 0);
-  }
-  else show_line("0", 0);          /* 95/Mar/1 */
+  else
+    if (interval >= CLK_TCK)     /* 94/Feb/25 */
+    {
+      hundredth = (interval * 100 + CLK_TCK / 2) / CLK_TCK;
+      seconds = hundredth / 100;
+      hundredth = hundredth % 100;
+      sprintf(log_line, "%d.%02d", seconds, hundredth);
+      show_line(log_line, 0);
+    }
+    else
+      if (interval > 0)         /* 94/Oct/4 */
+      {
+        thousands = (interval * 1000 + CLK_TCK / 2) / CLK_TCK;
+        seconds = thousands / 1000;
+        thousands = thousands % 1000;
+        sprintf(log_line, "%d.%03d", seconds, thousands);
+        show_line(log_line, 0);
+      }
+      else
+        show_line("0", 0);          /* 95/Mar/1 */
 }
 
 /* final cleanup opportunity */ /* flag is non-zero if error exit */
@@ -3444,93 +3204,85 @@ void show_inter_val (clock_t interval)
 
 int endit (int flag)
 {
-/*  int msec; */
   finish_time = clock();
-  if (missing_characters != 0) flag = 1;
-  if (missing_characters) {
-    sprintf(log_line,
-               "! There %s %d missing character%s --- see log file\n",
-               (missing_characters == 1) ? "was" : "were",  missing_characters,
-               (missing_characters == 1) ? "" : "s");
+
+  if (missing_characters != 0)
+    flag = 1;
+
+  if (missing_characters)
+  {
+    sprintf(log_line, "! There %s %d missing character%s --- see log file\n",
+      (missing_characters == 1) ? "was" : "were",  missing_characters,
+      (missing_characters == 1) ? "" : "s");
     show_line(log_line, 0);
   }
-  if (free_memory() != 0) flag++;
-/*  dumpaccess(); */
-/*  show per page time also ? */
-  if (verbose_flag) {
-/*    sprintf(log_line, "start %ld main %ld finish %ld\n",
-      start_time, main_time, finish_time); */
+
+  if (free_memory() != 0)
+    flag++;
+
+  if (verbose_flag)
+  {
     show_line("Total ", 0);
-/*    show_inter_val(start_time, finish_time); */
     show_inter_val(finish_time - start_time);
     show_line(" sec (", 0);
-/*    show_inter_val(start_time, main_time); */
     show_inter_val(main_time - start_time);
     show_line(" format load + ", 0);
-/*    show_inter_val(main_time, finish_time); */
     show_inter_val(finish_time - main_time);
     show_line(" processing) ", 0);
-    if (total_pages > 0) {
-/*      msec = (finish_time - main_time) * 1000 / (CLK_TCK * total_pages); */
-/*      sprintf(log_line, " %d.%d sec per page", msec / 1000, msec % 1000); */
-/*      sprintf(log_line, " %d.%03d sec per page", msec / 1000, msec % 1000); */
+
+    if (total_pages > 0)
+    {
       show_inter_val ((finish_time - main_time) / total_pages);
       show_line(" sec per page", 0);
     }
+
     show_line("\n", 0);
   }
 
   checkpause(flag);
-//  checkpause(1);
+
   return flag;
 }
 
-/********************************************************************************/
-
-/* addition 98/Mar/31 print_csnames Frank Mittelbach */
-
-int textcolumn;
-
-#define MAXCOLUMN 78
-
 void print_cs_name (FILE *output, int h)
 {
   int c, textof, n;
-  char *s;
-  
+
+  memset(log_line, 0, sizeof(log_line));
+
   textof = hash[h].v.RH;
-  if (textof == 0) return;  /* ignore if text() == 0 */
+
+  if (textof == 0)
+    return;
+
+  c = sprintf(log_line, "(%d), ", h);
   n = length(textof);
-  if (textcolumn != 0) {
-    sprintf(log_line, ", ");
-    if (output != NULL) fprintf(output, log_line);
-    else show_line(log_line, 0);
-    textcolumn += 2;
+
+  memmove(log_line + c, str_pool + str_start[textof], n);
+  memmove(log_line + c + n, "\n", 2);
+
+  if (output == stderr)
+  {
+    show_line(log_line, 1);
   }
-  if (textcolumn + n + 2 >= MAXCOLUMN) {
-    sprintf(log_line, "\n");
-    if (output == stderr) show_line(log_line, 1);
-    else if (output == stdout) show_line(log_line, 0);
-    else fputs(log_line, output);
-    textcolumn=0;
-  }
-  s = log_line;
-  for (c = str_start[textof]; c < str_start[textof+1]; c++) {
-    *s++ = str_pool[c];
-  }
-  if (output == stderr) show_line(log_line, 1);
-  else if (output == stdout) show_line(log_line, 0);
-  else fprintf(output, log_line);
-  textcolumn += n;
+  else
+  {
+    if (output == stdout)
+      show_line(log_line, 0);
+    else
+      fprintf(output, log_line);
+  }
+
 }
 
-int comparestrn (int, int, int, int); /* in tex9.c */
+int compare_strn (int, int, int, int); /* in tex9.c */
 
 /* compare two csnames in qsort */
 
-int comparecs (const void *cp1, const void *cp2)
+int compare_cs (const void *cp1, const void *cp2)
 {
   int c1, c2, l1, l2, k1, k2, textof1, textof2;
+
   c1 = *(int *)cp1;
   c2 = *(int *)cp2;
   textof1 = hash[c1].v.RH;
@@ -3539,147 +3291,194 @@ int comparecs (const void *cp1, const void *cp2)
   l2 = length(textof2); 
   k1 = str_start[textof1]; 
   k2 = str_start[textof2]; 
-/*  showstring (k1, l1); */
-/*  showstring (k2, l2); */
-  return comparestrn (k1, l1, k2, l2);
+
+  return compare_strn (k1, l1, k2, l2);
 }
 
-char *csused=NULL;
+char *csused = NULL;
 
 /* Allocate table of indeces to allow sorting on csname */
 /* Allocate flags to remember which ones already listed at start */
-
+/* pass = 0 --> fmt */
+/* pass = 1 --> after */
 void print_cs_names (FILE *output, int pass)
 {
   int h, k, ccount, repeatflag;
   int *cnumtable;
-  int nfcs = hash_base + hash_size + hash_extra;  /* frozen_control_sequence */
+  int nfcs = frozen_control_sequence;
 
-  if (pass == 0 && csused == NULL) {
+  if (pass == 0 && csused == NULL)
+  {
     csused = (char *) malloc (nfcs);
-    if (csused == NULL) return; 
+
+    if (csused == NULL)
+      return;
+
 #ifdef USEMEMSET
-    memset(csused, 0, nfcs); 
+    memset(csused, 0, nfcs);
 #else
-    for (h = 0; h < (hash_size+780); h++) csused[h] = 0;
+    for (h = 0; h < (hash_size + 780); h++)
+      csused[h] = 0;
 #endif
   }
 
-  ccount=0;
-  for (h = hash_base + 1; h < nfcs; h++) {
-    if (pass == 1 && csused[h]) continue;
-    if (hash[h].v.RH != 0) {
-      if (pass == 0) csused[h] = 1;
+  ccount = 0;
+
+  for (h = hash_base + 1; h < nfcs; h++)
+  {
+    if (pass == 1 && csused[h])
+      continue;
+
+    if (hash[h].v.RH != 0)
+    {
+      if (pass == 0)
+        csused[h] = 1;
+
       ccount++;
     }
   }
 
-  sprintf(log_line, "\n%d %s multiletter control sequences:\n\n",
+  sprintf(log_line, "\n%d %s multiletter control sequences:\n",
       ccount, (pass == 1) ? "new" : "");
-  if (output == stderr) show_line(log_line, 1); 
-  else if (output == stdout) show_line(log_line, 0);  
-  else fprintf(output, log_line);
 
-  if (ccount > 0) { /* don't bother to get into trouble */
-    textcolumn=0;
+  if (output == stderr)
+  {
+    show_line(log_line, 1);
+  }
+  else
+  {
+    if (output == stdout)
+      show_line(log_line, 0);
+    else
+      fprintf(output, log_line);
+  }
+
+  if (ccount > 0) /* don't bother to get into trouble */
+  {
     cnumtable = (int *) malloc (ccount * sizeof(int));
-    if (cnumtable == NULL) return;
 
-    ccount=0;
+    if (cnumtable == NULL)
+      return;
+
+    ccount = 0;
 /*    for (h = 515; h < (hash_size + 780); h++) { */
-    for (h = hash_base+1; h < nfcs; h++) {
-      if (pass == 1 && csused[ h]) continue; 
-      if (hash[h].v.RH != 0) cnumtable[ccount++] = h;
+    for (h = hash_base + 1; h < nfcs; h++)
+    {
+      if (pass == 1 && csused[h])
+        continue;
+
+      if (hash[h].v.RH != 0)
+        cnumtable[ccount++] = h;
     }
 
-    qsort ((void *)cnumtable, ccount, sizeof (int), &comparecs);
+    //qsort ((void *)cnumtable, ccount, sizeof (int), &compare_cs);
 
     repeatflag = 0;
-    for (k = 0; k < ccount; k++) {
-      h = cnumtable[ k];
-      if (pass == 1 && csused[ h]) continue; 
+
+    for (k = 0; k < ccount; k++)
+    {
+      h = cnumtable[k];
+
+      if (pass == 1 && csused[h])
+        continue;
+
       print_cs_name(output, h);
     }
+
     sprintf(log_line, "\n");
-    if (output == stderr) show_line(log_line, 1);
-    else if (output == stdout) show_line(log_line, 0);
-    else fprintf(output, log_line);
+
+    if (output == stderr)
+    {
+      show_line(log_line, 1);
+    }
+    else
+    {
+      if (output == stdout)
+        show_line(log_line, 0);
+      else
+        fprintf(output, log_line);
+    }
+
     free((void *)cnumtable);
   }
 
-  if (pass == 1 && csused != NULL) {
+  if (pass == 1 && csused != NULL)
+  {
     free(csused);
     csused = NULL;
   }
 }
 
 /***************** font info listing moved from TEX9.C ******************/
-
-void showstring (int k, int l)
-{
-  char *s=log_line;
-  while (l-- > 0) *s++ = str_pool[k++];
-  *s++ = ' ';
-  *s = '\0';
-  show_line(log_line, 0);
-}
-
 /* compare two strings in str_pool (not null terminated) */
 /* k1 and k2 are positions in string pool */
 /* l1 and l2 are lengths of strings */
 
-int comparestrn (int k1, int l1, int k2, int l2)
+int compare_strn (int k1, int l1, int k2, int l2)
 {
   int c1, c2;
-/*  while (l1-- > 0 && l2-- > 0) { */
-  while (l1 > 0 && l2 > 0) {
+
+  while (l1 > 0 && l2 > 0)
+  {
     c1 = str_pool[k1];
     c2 = str_pool[k2];
-/*    sprintf(log_line, "%c%d%c%d ", c1, l1, c2, l2); */
-    if (c1 > c2) return 1;
-    else if (c2 > c1) return -1;
+
+    if (c1 > c2)
+      return 1;
+    else if (c2 > c1)
+      return -1;
+
     l1--; l2--;
     k1++; k2++;
   }
-  if (l1 > 0) return 1;   /* first string longer */
-  else if (l2 > 0) return -1; /* second string longer */
+
+  if (l1 > 0)
+    return 1;   /* first string longer */
+  else if (l2 > 0)
+    return -1; /* second string longer */
+
   return 0;         /* strings match */
 }
 
 /* compare two font names and their at sizes in qsort */
 
-int comparefnt (const void *fp1, const void *fp2)
+int compare_fnt (const void *fp1, const void *fp2)
 {
   int f1, f2, l1, l2, k1, k2, s;
+
   f1 = *(short *)fp1;
   f2 = *(short *)fp2;
   l1 = length(font_name[f1]);
   l2 = length(font_name[f2]);
   k1 = str_start[font_name[f1]]; 
   k2 = str_start[font_name[f2]]; 
-/*  showstring (k1, l1); */
-/*  showstring (k2, l2); */
-  s = comparestrn (k1, l1, k2, l2);
-/*  sprintf(log_line, "%d\n", s); */
-  if (s != 0) return s;
-  if (font_size[f1]> font_size[f2]) return 1;
-  else if (font_size[f1]< font_size[f2]) return -1;
+
+  s = compare_strn (k1, l1, k2, l2);
+
+  if (s != 0)
+    return s;
+
+  if (font_size[f1] > font_size[f2])
+    return 1;
+  else if (font_size[f1] < font_size[f2])
+    return -1;
+
   return 0;         /* should not ever get here */
 }
 
 /* compare two font names */
 
-int comparefntname (int f1, int f2)
+int compare_fnt_name (int f1, int f2)
 {
   int l1, l2, k1, k2, s;
+
   l1 = length(font_name[f1]);
   l2 = length(font_name[f2]); 
   k1 = str_start[font_name[f1]]; 
   k2 = str_start[font_name[f2]]; 
-/*  showstring (k1, l1); */
-/*  showstring (k2, l2); */
-  s = comparestrn (k1, l1, k2, l2);
-/*  sprintf(log_line, "%d\n", s); */
+
+  s = compare_strn (k1, l1, k2, l2);
+
   return s;
 }
 
@@ -3693,31 +3492,34 @@ int decode_fourty (unsigned long checksum, char *codingvector)
   int k;
 /*  char codingvector[6+1]; */
 
-/*  if (checksum == checkdefault) { */
-  if (checksum == 0) {
-/*    strcpy(codingvector, "unknown"); */
+  if (checksum == 0)
+  {
     strcpy(codingvector, "unknwn");
     return 1;
   }
-  else if ((checksum >> 8) == (checkdefault >> 8)) {  /* last byte random */
+  else
+    if ((checksum >> 8) == (checkdefault >> 8))  /* last byte random */
+    {
 /*    strcpy (codingvector,  "native"); */  /* if not specified ... */
-    strcpy (codingvector,  "fixed ");   /* if not specified ... */
-    return 1;               /* no info available */
-  }
-  else {
-    for (k = 0; k < 6; k++) {
-      c = (int) (checksum % 40);
-      checksum = checksum / 40;
-      if (c <= 'z' - 'a')c = c + 'a';
-      else if (c < 36) c = (c + '0') - ('z' - 'a') - 1;
-      else if (c == 36) c = '-';
-      else if (c == 37) c = '&';
-      else if (c == 38) c = '_';
-      else c = '.';       /* unknown */
-      codingvector[5-k] = (char) c;
+      strcpy (codingvector,  "fixed ");   /* if not specified ... */
+      return 1;               /* no info available */
+    }
+    else
+    {
+      for (k = 0; k < 6; k++)
+      {
+        c = (int) (checksum % 40);
+        checksum = checksum / 40;
+        if (c <= 'z' - 'a') c = c + 'a';
+        else if (c < 36) c = (c + '0') - ('z' - 'a') - 1;
+        else if (c == 36) c = '-';
+        else if (c == 37) c = '&';
+        else if (c == 38) c = '_';
+        else c = '.';       /* unknown */
+        codingvector[5-k] = (char) c;
+      }
+      codingvector[6] = '\0';
     }
-    codingvector[6] = '\0';
-  }
 /*  sprintf(log_line, "Reconstructed vector %s\n", codingvector); */
   return 0;         /* encoding info returned in codingvector */
 }
@@ -3725,8 +3527,10 @@ int decode_fourty (unsigned long checksum, char *codingvector)
 double sclpnt (long x)
 {
   double pt;
+
   pt = (double) x / 65536.0;
   pt = (double) ((int) (pt * 1000.0 + 0.5)) / 1000.0;
+
   return (pt);
 }
 
@@ -3734,43 +3538,48 @@ double sclpnt (long x)
 
 void dvi_font_show(internal_font_number f, int suppressname)
 {
-  int a, l, k, n, for_end;
+  int a, l, k, n;
   unsigned long checksum;
   char checksumvector[8];
   char buffer[32];
 
-/*  fprintf (log_file, "DAMN! %d ", suppressname); */
-/*  fprintf (log_file, "%d ", suppressname); */
-/*  suppressname = 0; */
   putc(' ', log_file);
-  if (suppressname == 0) {
-    a = length(font_area[f]); 
-    l = length(font_name[f]); 
+
+  if (suppressname == 0)
+  {
+    a = length(font_area[f]);
+    l = length(font_name[f]);
+
     k = str_start[font_area[f]];
-    for_end = str_start[font_area[f]+ 1]- 1;
-    if (k <= for_end) do {
-      putc(str_pool[k], log_file);
-    } while(k++ < for_end, stdout); 
+
+    memcpy(buffer, str_pool + k, length(font_area[f]));
+    fwrite(buffer, sizeof(char), length(font_area[f]), log_file);
+
     k = str_start[font_name[f]];
-    for_end = str_start[font_name[f]+ 1]- 1;
-    if (k <= for_end) do {
-      putc(str_pool[k], log_file);
-    } while(k++ < for_end);
+
+    memcpy(buffer, str_pool + k, length(font_name[f]));
+    fwrite(buffer, sizeof(char), length(font_name[f]), log_file);
   }
   else a = l = 0;
-  for (k = a+l; k < 16; k++) putc(' ', log_file);
+
+  for (k = a + l; k < 16; k++)
+    putc(' ', log_file);
+
   sprintf(buffer, "at %lgpt ", sclpnt(font_size[f]));
   fputs(buffer, log_file);
-//  fprintf(log_file, "at %lgpt ", sclpnt(font_size[f]));
-  if (suppressname == 0) {
+
+  if (suppressname == 0)
+  {
     n = strlen(buffer);
-//    n = strlen(log_file);
-    for (k = n; k < 16; k++) putc(' ', log_file);
-    checksum = (((font_check[f].b0) << 8 | font_check[f].b1) << 8 |
-          font_check[f].b2) << 8 | font_check[f].b3;
+
+    for (k = n; k < 16; k++)
+      putc(' ', log_file);
+
+    checksum = (((font_check[f].b0) << 8 | font_check[f].b1) << 8 | font_check[f].b2) << 8 | font_check[f].b3;
     decode_fourty(checksum, checksumvector);
     fprintf(log_file, "encoding: %s..", checksumvector);
   }
+
   putc('\n', log_file);
 }
 
@@ -3781,331 +3590,44 @@ void show_font_info (void)
   int k, m, fcount, repeatflag;
   short *fnumtable;
 
-  fcount=0;
+  fcount = 0;
+
   for (k = 1; k <= font_ptr; k++)
-    if (font_used[k])fcount++;
+    if (font_used[k])
+      fcount++;
 
-  if (fcount == 0) return;  /* don't bother to get into trouble */
+  if (fcount == 0)
+    return;
 
   fnumtable = (short *) malloc (fcount * sizeof(short));
 
-/*  if (verbose_flag) sprintf(log_line, "\nUsed %d fonts:\n", fcount); */
+  fprintf(log_file, "\nUsed %d font%s:\n", fcount, (fcount == 1) ? "" : "s");
 
-  fprintf(log_file, "\nUsed %d font%s:\n",
-      fcount, (fcount == 1) ? "" : "s");
+  fcount = 0;
 
-  fcount=0;
   for (k = 1; k <= font_ptr; k++) 
-    if (font_used[k])fnumtable[fcount++] = (short) k;
+    if (font_used[k])
+      fnumtable[fcount++] = (short) k;
 
-  qsort ((void *)fnumtable, fcount, sizeof (short), &comparefnt);
+  qsort ((void *)fnumtable, fcount, sizeof (short), &compare_fnt);
 
   repeatflag = 0;
-  for (m = 0; m < fcount; m++) {
-    if (m > 0) {
-      if (comparefntname(fnumtable[m-1], fnumtable[m]) == 0)
-        repeatflag = 1;
-      else repeatflag = 0;
-    }
-    dvi_font_show(fnumtable[ m], repeatflag);
-  }
-
-  free((void *)fnumtable);
-}
-
-////////////////////////////////////////////////////////////////////////////
 
-// Here follows the new stuff for the DLL version
-
-#ifdef _WINDOWS
-
-int showlineinx=0;
-
-#define SHOWLINEBUFLEN 256
-
-char showlinebuf[SHOWLINEBUFLEN];
-
-// char log_line[MAXLINE];
-
-#define WHITESPACE " \t\n\r"
-
-HINSTANCE hInstanceDLL=NULL;    /* remember for this DLL */
-
-/* This is the callback function for the EDITTEXT Control in CONSOLETEXT */
-
-#define GET_WM_COMMAND_CMD(wParam, lParam)  (HIWORD(wParam))
-#define GET_WM_COMMAND_ID(wParam, lParam) (LOWORD(wParam))
-#define GET_WM_COMMAND_HWND(wParam, lParam) ((HWND)lParam)
-
-HWND hConsoleWnd=NULL;    /* Console Text Window Handle passed from DVIWindo */
-
-void ClearShowBuffer (void)
-{
-  showlinebuf[showlineinx++] = '\0';    // clear out accumulated stuff
-  if (hConsoleWnd != NULL)
-    SendMessage(hConsoleWnd, ICN_ADDTEXT, (WPARAM) showlinebuf, 0L);
-  showlineinx = 0;
-}
-
-// communicate with DVIWindo (for yandytex.dll)
-
-void show_line (char *line, int errflag) {     /* 99/June/11 */
-  int ret;
-
-  if (IsWindow(hConsoleWnd) == 0) {   // in case the other end died
-    sprintf(line, "NO CONSOLE WINDOW? %08X %s", hConsoleWnd, line);
-    ret = MessageBox(NULL, line, "YandYTeX", MB_ICONSTOP | MB_OKCANCEL | MB_TASKMODAL);
-    hConsoleWnd = NULL;
-//    abort_flag++;            // kill job in this case ???
-    return;
-  }
-
-  if (showlineinx > 0) ClearShowBuffer();
-
-  if (hConsoleWnd != NULL)
-    SendMessage(hConsoleWnd, ICN_ADDTEXT, (WPARAM) line, 0L);
-
-  if (errflag) {
-    err_level++;
-    ret =  MessageBox(NULL, line, "YandYTeX", MB_ICONSTOP | MB_OKCANCEL | MB_TASKMODAL);
-    if (ret == IDCANCEL) {
-//      abort_flag++;
-      uexit(1);   // dangerous reentry possibility ?
-    }
-  }
-}
-
-//  Provide means for buffering up individual characters
-
-void show_char (int chr) {
-  if (showlineinx +2 >= SHOWLINEBUFLEN) ClearShowBuffer();
-  showlinebuf[showlineinx++] = (char) chr;
-  if (chr == '\n') ClearShowBuffer();
-}
-
-void winshow(char *line) {
-  (void) MessageBox(NULL, line, "YandYTeX", MB_ICONINFORMATION | MB_OK | MB_TASKMODAL);
-}
-
-void winerror (char *line) {
-  int ret;
-  ret = MessageBox(NULL, line, "YandYTeX", MB_ICONSTOP | MB_OKCANCEL | MB_TASKMODAL);
-  if (ret == IDCANCEL) abort_flag++;
-}
-
-// argument info constructed from command line 
-
-int xargc;
-
-char **xargv=NULL;
-
-// need to be careful here because of quoted args with spaces in them
-// e.g. -d="G:\Program Files\Adobe\Acrobat\*.pdf"
-
-int makecommandargs (char *line)
-{
-  int xargc;
-//  char *s, *t;
-  unsigned char *s, *t;       // fix 2000 June 18
-
-  if (line == NULL) return -1;    /* sanity check */
-
-//  winerror(line);           // debugging only
-
-//  s = strtok(line, WHITESPACE);
-//  while (s != NULL) {         /* count arguments */
-//    xargc++;
-//    s = strtok(NULL, WHITESPACE);
-//  }
-
-  xargc = 0;
-  s = line;
-  while (*s != '\0') {
-    while (*s <= 32 && *s > 0) s++;
-    if (*s == '\0') break;
-    t = s;
-    while (*t > 32 && *t != '\"') t++;
-    if (*t == '\"') {
-      t++;
-      while (*t > 0 && *t != '\"') t++;
-      if (*t == '\0') break;
-      t++;
-    }
-//    xargv[xargc] = s;
-    xargc++;
-    if (*t == '\0') break;
-//    *t = '\0';
-    s = t+1;
-  }
-
-  if (xargc == 0) return -1;      /* nothing to do */
-
-  xargv = (char **) malloc(xargc * sizeof(char *));
-  if (xargv == NULL) {
-    sprintf(log_line, "ERROR: Unable to allocate memory for %s\n", "arguments");
-    winerror(log_line);
-    return -1;
-  }
-
-  xargc = 0;
-  s = line;
-  while (*s != '\0') {
-    while (*s <= ' ' && *s > '\0') s++; /* eat white space */
-    if (*s == '\0') break;
-    t = s;
-    while (*t > ' ' && *t != '\"') t++;
-    if (*t == '\"') {
-      t++;
-      while (*t > 0 && *t != '\"') t++;
-      if (*t == '\0') break;
-      t++;
+  for (m = 0; m < fcount; m++)
+  {
+    if (m > 0)
+    {
+      if (compare_fnt_name(fnumtable[m-1], fnumtable[m]) == 0)
+        repeatflag = 1;
+      else
+        repeatflag = 0;
     }
-//    winerror(s);    // debugging only
-    xargv[xargc] = s;
-    xargc++;
-    if (*t == '\0') break;
-    *t = '\0';
-    s = t+1;
-  }
-
-//  s = line;
-//  for (k = 0; k < xargc; k++) { /* create pointers to args */
-//    while (*s > '\0' && *s <= ' ') s++; /* eat white space */
-//    xargv[k] = s;
-//    s += strlen(s) +1;
-//  }
-
-#ifdef DEBUGGING
-  s = log_line;
-  *s = '\0';
-  for (k = 0; k < xargc; k++) {
-    sprintf(s, "%d\t%s\n", k, xargv[k]);
-    s += strlen(s);
-  }
-  winshow(log_line);
-#endif
-  return xargc;
-}
-
-// refers to TeXAsk in dviwindo.c
-
-// int (* AskUserCall) (char *, char *) = NULL; // callback for user questions
-int (* AskUserCall) (char *, char *, char *) = NULL;  // callback for user questions
-
-// called from tex0.c only  ---  by initterm and term_input
-
-//int ConsoleInput (char *question, char *buffer) 
-int ConsoleInput (char *question, char *help, char *buffer)
-{
-  int ret=0;
-//  char *s;
-  if (AskUserCall == NULL) return 0;
-//  sprintf(log_line, "str_start %x %x\n", str_start, str_start [831]);
-//  show_line(log_line, 1);
-
-  *buffer = '\0';
-  ret = AskUserCall (question, help, buffer);   // value returned by dialogbox
-//  strcpy(buffer, "x");
-//  strcat(buffer, " ");      // ???
-//  sprintf(log_line, "str_start %x %x\n", str_start, str_start[831]);
-//  show_line(log_line, 1);
-//  input_line_finish();      // ???
-//  s = buffer + strlen(buffer);
-//  *s++ = ' ';           // space terminate
-//  *s++ = '\0';          // and null terminate
-//  returning != 0 means EOF or ^Z
-  return ret;
-}
-
-//  This is the new entry point of DLL called from DVIWindo 
-//  ARGS: console window to send messages to, command line, callback fun
-//  no console window output if hConsole is NULL
-//  returns -1 if it fails --- returns 0 if it succeeds
-
-// MYLIBAPI int yandytex (HWND hConsole, char *line, int (* AskUser) (char *, char *)) {
-MYLIBAPI int yandytex (HWND hConsole, char *line, int (* AskUser) (char *, char *, char *))
-{
-  int flag;
-
-  abort_flag = 0;            // redundant
-  hConsoleWnd = NULL;         // redundant
-
-  AskUserCall = AskUser;        // remember callback
-
-  hConsoleWnd = hConsole;       // remember console window handle
-
-//  can't getenv("DEBUGPAUSE") cause setupdviwindo not called yet
-//  if (grabenv("DEBUGPAUSE") != NULL) {
-//    show_line(line, 0);          // debugging - show command line
-//    show_line("\n", 0);
-//  }
-
-  xargc = makecommandargs(line);      // sets up global *xargv[]
-
-  if (xargc < 0) return -1;       // sanity check
-
-  if (hConsoleWnd != NULL) 
-    SendMessage(hConsoleWnd, ICN_SETTITLE, (WPARAM) "YandYTeX", 0L);
-//  SendMessage(hConsoleWnd, ICN_RESET, 0, 0L); // if want to clear window
-
 
-  (void) main(xargc, xargv);  // now run YandYTeX proper in texmf.c 
-
-  if (err_level > 0 || abort_flag > 0) {
-//    sprintf(log_line, "ERRORS in Processing (err %d abort %d)\n",
-//        err_level, abort_flag);
-//    winerror(log_line);
-  }
-
-//  if (psbufpos > 0) sendpsbuffer(output);   // empty out PS buffer
-//  if (psbufpos > 0) PSputs("", output);   // output already closed
-
-  if (hConsoleWnd != NULL) {
-    if (err_level > 0 || abort_flag > 0) flag = 1;
-    else flag = 0;              // pass along error indication
-    SendMessage(hConsoleWnd, ICN_DONE, flag, 0);  // flush out console buffer
+    dvi_font_show(fnumtable[m], repeatflag);
   }
-//  PScallback = NULL;
-  hConsoleWnd = NULL;
-
-  if (xargv != NULL) free(xargv);
-  if (abort_flag) return -1;
-  else return 0;
-}
-
-BOOL WINAPI DllMain (HINSTANCE hInstDll, DWORD fdwReason, LPVOID fImpLoad)
-{
-
-  switch (fdwReason) {
-    case DLL_PROCESS_ATTACH:
-      // The DLL is being mapped into the process's address space
-      // place to allocate memory ???
-      // return FALSE if this fails
-      hInstanceDLL = hInstDll;    /* remember it */
-      break;
-
-    case DLL_THREAD_ATTACH:
-      // A thread is being created
-      break;
-
-    case DLL_THREAD_DETACH:
-      // A thread is exiting cleanly
-      break;
 
-    case DLL_PROCESS_DETACH:
-      // The DLL is being unmapped from the process's address space
-      // place to free any memory allocated
-      // but make sure it in fact *was* allocated
-      hInstanceDLL = NULL;    /* forget it */
-      break;
-  }
-  return(TRUE); // used only for DLL_PROCESS_ATTACH
+  free((void *)fnumtable);
 }
-#endif  // end of new stuff for DLL version
-
-//////////////////////////////////////////////////////////////////////////////
-
-
 
 /*  NOTE: current_tfm = false (-c)
   not checking for TFM in current directory saves 0.1 sec
@@ -4124,16 +3646,6 @@ BOOL WINAPI DllMain (HINSTANCE hInstDll, DWORD fdwReason, LPVOID fImpLoad)
 
 /*  Fast flag combinations: nothing, bG, bcG, bcDG */
 
-/* constants for _heapchk/_heapset/_heapwalk routines */
-/* #define _HEAPEMPTY (-1) */
-/* #define _HEAPOK  (-2) */
-/* #define _HEAPBADBEGIN  (-3) */
-/* #define _HEAPBADNODE (-4) */
-/* #define _HEAPEND (-5) */
-/* #define _HEAPBADPTR  (-6) */
-
-/* new arg -H=8 for horizontal tab *//* tab_step = 0 means no tab replacement */
-
 /* buffercopy no longer used */
 
 /* To Knuthian reset right when command line interpreted */