davidvarga / MBeautifier

MBeautifier is a MATLAB source code formatter, beautifier. It can be used directly in the MATLAB Editor and it is configurable.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Broken formatting

VorpalBlade opened this issue · comments

Mr = @(lambda) ([cos(lambda), sin(lambda); -sin(lambda), cos(lambda)]);

now turns into

Mr = @(lambda) ([cos, (lambda), sin, (lambda); -sin, (lambda), cos, (lambda)]);

The recent fix for list concatenations likely broke this.

Hi,

yeah you are right - actually my fix of the bug introduced by this commit causing this.

I try to revert "my fix" and patch up the original commit.

It should be fixed for now.