home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume7 / thack.p1 < prev    next >
Text File  |  1989-07-30  |  2KB  |  98 lines

  1. Newsgroups: comp.sources.misc
  2. from: allbery@uunet.UU.NET (Brandon S. Allbery - comp.sources.misc)
  3. subject: v07i110: patch #1 to thack
  4. Reply-To: everson%compsci.bristol.ac.uk@NSFnet-Relay.AC.UK
  5.  
  6. Posting-number: Volume 7, Issue 110
  7. Submitted-by: everson%compsci.bristol.ac.uk@NSFnet-Relay.AC.UK
  8. Archive-name: thack.p1
  9.  
  10. [This patch was posted to comp.bugs.misc but never made it here; here it is,
  11.  for use with the next submission (patch #2...).  ++bsa]
  12.  
  13. Enclosed is the first official patch to thack, a troff to postscript
  14. filter, recently posted to comp.sources.misc. The patches below fix 2
  15. problems:
  16.  
  17. 1) The length of US paper is different (11") to that of European A4
  18. paper (11.5") - Added an option to the Makefile to use US page
  19. lengths.
  20.  
  21. 2) A variable (fh) was not initialized to 0. This caused problems (core
  22. dumps) on some systems (notably, not ours) and not others. This
  23. variable is now initialized.
  24.  
  25. Thanks to all of the people who have made favourable comments about
  26. this program.
  27.  
  28. Apply the following fixes using the program patch or by hand.
  29.  
  30. Phill Everson
  31. Medical Imaging
  32. Dept Comp Sci
  33. University of Bristol, UK
  34.  
  35. *** Makefile    Thu Jun 29 07:46:36 1989
  36. --- Makefile.orig    Thu Jun 29 07:44:45 1989
  37. ***************
  38. *** 1,10 ****
  39.   .PRECIOUS: thack.c th.h
  40.   
  41. - # Define USPAGELENGTH to use on US 11 inch long paper. Default is European A4.
  42. - #CFLAGS=-DUSPAGELENGTH
  43.   thack: thack.o
  44. !     cc $(CFLAGS) -o thack thack.o
  45.   
  46.   thack.c: th.h
  47.       touch thack.c
  48. --- 1,7 ----
  49.   .PRECIOUS: thack.c th.h
  50.   
  51.   thack: thack.o
  52. !     cc -o thack thack.o
  53.   
  54.   thack.c: th.h
  55.       touch thack.c
  56. *** thack.c    Thu Jun 29 07:49:30 1989
  57. --- thack.c.orig    Thu Jun 29 07:44:04 1989
  58. ***************
  59. *** 10,16 ****
  60.       int sflag;
  61.       int hdist, vdist;
  62.       int esc, lead;
  63. !     int fh=0;
  64.   
  65.       hdist = vdist = 0;
  66.       cfont = csize = -1;
  67. --- 10,16 ----
  68.       int sflag;
  69.       int hdist, vdist;
  70.       int esc, lead;
  71. !     int fh;
  72.   
  73.       hdist = vdist = 0;
  74.       cfont = csize = -1;
  75. ***************
  76. *** 17,27 ****
  77.       tfont = font = 0;
  78.       tsize = size = 12;
  79.       esc = lead = 1;
  80. ! #ifdef USPAGELENGTH
  81. !     cy = ypos = 1584; /* represents 11 inches in troff vertical units */
  82. ! #else
  83. !     cy = ypos = 1692; /* represents 11.5 inches in troff vertical units */
  84. ! #endif
  85.       cx = xpos = 0;
  86.       sflag = 0;
  87.       prolog();
  88. --- 17,23 ----
  89.       tfont = font = 0;
  90.       tsize = size = 12;
  91.       esc = lead = 1;
  92. !     cy = ypos = 1692;
  93.       cx = xpos = 0;
  94.       sflag = 0;
  95.       prolog();
  96.  
  97.