This style controls the position of the close parenthesis for multiple-line formatting styles. You can select one of the following options:
Close parenthesis on the last line of each formatting expression.
Close parenthesis on the next line following the last line of each formatting expression with the inner indent.
Close parenthesis on the next line following the last line of each formatting expression with the outer indent.
The initial expression is written as:
(cond
((/= (logand mask flg) 0)
(list (list txton)))
)
Formatting result when Close at the Same Line option is selected:
(cond ((/= (logand mask flg) 0)
(list (list txton))))
Formatting result when Close at the New Line with Inner Indentation option is selected:
(cond ((/= (logand mask flg) 0)
(list (list txton))
)
)
Formatting result when Close at the New Line with Outer Indentation is selected:
(cond ((/= (logand mask flg) 0)
(list (list txton))
)
)