Emacs cc-mode indentation problem with C++0x enum class
This is the problem: cc-mode relies somewhat on the assumption that keywords are single words. Adding support for enum_class instead of enum class would just be a matter of changing a few regexps. Instead Emacs treats this as a class. The correct way of solving this would be teaching Emacs that this is an enum. … Read more