PROCEED

The PROCEED option stops the compiler after processing by a preprocessor is completed depending on the severity of messages issued by previous preprocessors.

Read syntax diagramSkip visual syntax diagram
   .-NOPROCEED--+-------------+-.   
   |            |    .-S-.    | |   
   |            '-(--+-W-+--)-' |   
   |                 '-E-'      |   
>>-+-PROCEED--------------------+------------------------------><

ABBREVIATIONS: PRO, NPRO

PROCEED
Is equivalent to NOPROCEED(S).
NOPROCEED
Ends the processing after the preprocessor has finished compiling.
NOPROCEED(S)
The invocation of preprocessors and the compiler does not continue if a severe or an unrecoverable error is detected in this stage of preprocessing.
NOPROCEED(E)
The invocation of preprocessors and the compiler does not continue if an error, a severe error, or an unrecoverable error is detected in this stage of preprocessing.
NOPROCEED(W)
The invocation of preprocessors and the compiler does not continue if a warning, an error, a severe error, or an unrecoverable error is detected in this stage of preprocessing.