FIXEDFORMLINESIZE

General Compiler Directive: Sets the line length for fixed-form Fortran source code.

Syntax

cDEC$ FIXEDFORMLINESIZE:{72 | 80 | 132}

c
Is one of the following: C (or c), !, or *. (See Syntax Rules for Compiler Directives.)

Description

You can set FIXEDFORMLINESIZE to 72 (the default), 80, or 132 characters. The FIXEDFORMLINESIZE setting remains in effect until the end of the file, or until it is reset.

The FIXEDFORMLINESIZE directive sets the source-code line length in include files, but not in USE modules, which are compiled separately. If an include file resets the line length, the change does not affect the host file.

This directive has no effect on free-form source code.

See Also

FREEFORM and NOFREEFORM, Building Applications: /fixed, Source Forms, General Compiler Directives, Building Applications: Compiler Directives Related to Options

Example

 cDEC$ NOFREEFORM
 cDEC$ FIXEDFORMLINESIZE:132
       WRITE (*,*) 'Sentence that goes beyond the 72nd column without continuation.'