* Add a new configuration option "indent_function_file_body" for MH
Style. This is true by default. If you set it to false, then you get
the odd indentation style that somewhat common in the MATLAB world,
where functions in function files do not have their body indented.
For example:
function z = Potato(w)
z = -w;
Note that this option only affects top-level functions in function
files. Any other function (e.g. a method, or a nested function) is
not affected.
* Fix an issue where a broken symlink could cause the tools to crash
in some circumstances. Broken symlinks are now ignored.