I've been fiddling around a bit with CC-mode lately and figured that since I prefer to comment my functions/classes with javadoc-like syntax, I'd like to use the built-in comment highlighting provided by the corresponding c-doc-comment-style
. This works rather well, it highlights something like this rather easily:
/** @brief This is function foo.
@param a this is a parameter.
@return I return this.
*/
int foo(unsigned a) {...}
However, I noticed that the comment suddenly changed color as well to a default one I don't really like. Any idea how to change that color back to the one defined by the current theme instead?