I have not seen even a single text editor where such a functionality was implemented. All the programs or embedded text editing controls, that I've ever seen in my life, never remove the first empty line if I place the caret there and press Backspace.28.03.25 Fixed: Compare by content: Backspace can now remove the first line if it is completely empty (32/64)
Traditionally, the current line's EOL is considered to be located behind the last caret position, not in front of it. And since Backspace removes a character before the caret, it cannot delete the current line's EOL (or anything else, because there's nothing in front of the caret). Similar to how the Del key does nothing, when the caret is at the very end of the file, because it removes what's behind the caret, and cannot do it if nothing is present after the caret.
I believe that such a change in TC contradicts with this standard behavior too much, and may lead to unexpected editing results that user might have not intended.