Emacs-D-Mode-Maintainers / Emacs-D-Mode

An Emacs mode for D code.
GNU General Public License v3.0
84 stars 22 forks source link

Wrong indentation for `catch` after `try` in brace-less `if` #111

Open Geod24 opened 3 years ago

Geod24 commented 3 years ago
void main ()
{
    if (true)
        try
        throw new Exception("Hello World");
    catch (Exception exc) {}
}

Emacs 27.2, latest Emacs-D-Mode