home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / MISC / TIDY621.ZIP / CONVERT.UNX < prev    next >
Encoding:
Text File  |  1990-09-26  |  1.4 KB  |  33 lines

  1.  
  2.  
  3.                            UNIX Conversion Notes for TIDY
  4.  
  5.          These notes are for the f77 compiler under 4.3 BSD UNIX or
  6.          ULTRIX.
  7.  
  8.          1.  In the main program (TIDY), change the variable SCDISK
  9.              from .TRUE. to .FALSE..  This suppresses the query for
  10.              what disk (MS-DOS) the scratch files are to be written
  11.              to.
  12.  
  13.          2.  In the BLOCK DATA routine following main program TIDY,
  14.              change the value for STDIN from 0 to 5.
  15.  
  16.          3.  In subroutine OPFIL, disable the call to function
  17.              DOSDEV.  The variable ISDEV is forced to .FALSE. just before
  18.              this call, and should remain .FALSE. at all times.
  19.  
  20.          As supplied, TIDY converts everything outside of strings to upper
  21.          case, which is the ANSI standard character set.  The f77 compiler
  22.          assumes all source code is in lower case.  If desired, TIDY can be
  23.          converted to translate everything outside of strings to lower
  24.          case:
  25.  
  26.          1.  Use the dd utility to convert the entire TIDY source file to
  27.          lower case. This transforms all character constants to lower case.
  28.  
  29.          2.  Using a text editor, delete the source code for function
  30.          KUPPER from the lower case file prepared above, and replace it
  31.          with the file KUPPER.UNX .  The file KUPPER.UNX has been altered
  32.          to convert upper case to lower case.
  33.