fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
F2714
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     FORTRAN compilation error F2714
 
     I/O option <number> : <<keyword=>> missing
 
     The I/O option at position <number> in the option list appeared
     without a keyword.
 
     An I/O option without a keyword must not appear past the second
     position in the option list. Also, only UNIT= and FMT=
     options can appear without a keyword. If the UNIT= option
     appears without a keyword, it must be the first option in the
     option list. If the FMT= option appears without a keyword, it
     must follow a UNIT= option without a keyword.
 
     For example,
 
          OPEN (2, 'F.DOT')>
 
     would produce the message
 
          I/O option 2:  <<keyword=>> missing
 
     because the FILE= option is missing in the second option.
                                    -♦-