We discovered a scenario in which using Ctrl-Shift-F to format code causes some of the code to be absorbed into a comment.
; Before formatting
(let
; It is not safe to put a comment here.
((value1 “This is”) (value2 “a formatting test.”))
(format “{0} {1}” value1 value2)
)
; After formatting
(let
; It is not safe to put a comment here. ((value1 “This is”) (value2 “a formatting test.”))
(format “{0} {1}” value1 value2)
)