home *** CD-ROM | disk | FTP | other *** search
-
-
- UNIX Conversion Notes for TIDY
-
- These notes are for the f77 compiler under 4.3 BSD UNIX or
- ULTRIX.
-
- 1. In the main program (TIDY), change the variable SCDISK
- from .TRUE. to .FALSE.. This suppresses the query for
- what disk (MS-DOS) the scratch files are to be written
- to.
-
- 2. In the BLOCK DATA routine following main program TIDY,
- change the value for STDIN from 0 to 5.
-
- 3. In subroutine OPFIL, disable the call to function
- DOSDEV. The variable ISDEV is forced to .FALSE. just before
- this call, and should remain .FALSE. at all times.
-
- As supplied, TIDY converts everything outside of strings to upper
- case, which is the ANSI standard character set. The f77 compiler
- assumes all source code is in lower case. If desired, TIDY can be
- converted to translate everything outside of strings to lower
- case:
-
- 1. Use the dd utility to convert the entire TIDY source file to
- lower case. This transforms all character constants to lower case.
-
- 2. Using a text editor, delete the source code for function
- KUPPER from the lower case file prepared above, and replace it
- with the file KUPPER.UNX . The file KUPPER.UNX has been altered
- to convert upper case to lower case.