In emacs 21:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
But now in emacs 22.2.1:
namespace Abc { namespace Def {
class X;
namespace Ghi {
class Y;
}
} }
How do I get the old behaviour back? Note that I don't want a fixed column for indentation, I want it to indent one level regardless of how many 'namespace {' the line contains.