This style controls the position of the close parenthesis for multiple-line formatting styles. You can select one of the following options:
- Close at the Same Line
- Close at the New Line with Inner Indentation
- Close at the New Line with Outer Indentation
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))
)
)