Exactly. As an example, I'd be tempted to offer a warning for your example...
If X=1 then & ! comment here
do this : &
do this
%Warning: old-style multi-line IF statement deprecated - IF/ENDIF suggested!

The other problem is that while requiring a /W switch to enable warnings takes care of the annoyance factor for those who don't want them; it almost certainly means that you'll never get the warning that really would have helped, unless you always compile with /W.
But while on the subject, I will note that there is one warning that I don't think I've ever received a complaint about (unmapped variables) ...
.compil test.bp/x:2/n
Phase 1
Phase 2
End of compilation [1 unmapped variable]
I suppose we could add to that a message like "# comments continued to next line". But before long that compact approach to warnings will become unwieldy, requiring us to go to more detailed messages (which must then be easily distinguishable from errors, both for humans reading the messages and for external editors that are looking to capture them to identify errors to be edited).