mck9 - 2015-01-04

Small correction to my LETTURA: the test for blank lines needs be different depending on whether the format is fixed or free.

          IF SW-FREE = SPACE
          AND REC-IN(7:72) = SPACES
             MOVE REC-IN             TO REC-OUT
             PERFORM SCRITTURA
          ELSE IF SW-FREE NOT = SPACE
          AND REC-IN = SPACES
             MOVE REC-IN             TO REC-OUT
             PERFORM SCRITTURA
          ELSE
             PERFORM IS-COMMENT

...plus an extra END-IF below.

Ultimately I'd like for LETTURA to send every input line to SCRITTURA, so that we don't have to do so from half a dozen other places. However that won't work yet because LETTURA hasn't converted free format to fixed.

Scott McKellar