1.1.14 $ELSEIF or $ELIFC : Switch conditional compilation

This directive can be used as a shortcut for a new f$IF g directive inside an f$ELSE g clause:

{$IF XXX}  
  // XXX Code here  
{$ELSEIF YYY}  
  // YYY code here  
{$ELSE}  
  // And default code here  
{$ENDIF}

is equivalent to

{$IF XXX}  
  // XXX Code here  
{$ELSE }  
{$IF YYY}  
  // YYY code here  
{$ELSE}  
  // And default code here  
{$ENDIF}  
{$ENDIF}

The directive is followed by an expression like the ones recognized by the f$IF g directive.

The f$ELIFC g variant is allowed only in MACPAS mode.