Section 8.4, Syntax 8-3, A.6.6
Unique/priority if

In section 8.4, REMOVE the following sentence:

  In the preceding examples it would have been illegal to insert either keyword after any of the occurrences of else.

In Syntax 8-3 and A.6.6

REPLACE

conditional_statement ::=         

            [ unique_priority ] if ( expression ) statement_or_null [ else statement_or_null ]

        |             if_else_if_statement

WITH

conditional_statement ::= [ unique_priority ] if_else_if_statement    

 

REPLACE

if_else_if_statement ::=

            [ unique_priority ] if ( expression ) statement_or_null

            { else [ unique_priority ] if ( expression ) statement_or_null }

            [ else statement_or_null ]

WITH

if_else_if_statement ::=

 if ( expression ) statement_or_null

            { else if ( expression ) statement_or_null }

            [ else statement_or_null ]