There is a bug in C/C++ comment highlighting (bug 11865)
Where the fix appears to be to modify the value of c-font-lock-doc-comments
Is there a way to do this in my emacs config, instead of having to keep a modified version of the original emacs source?
In the patch makes this change:
- (c-font-lock-doc-comments "/**$" limit gtkdoc-font-lock-doc-comments)
+ (c-font-lock-doc-comments "/**([^*/].*)?$" limit gtkdoc-font-lock-doc-comments)
Is there a way to apply this change locally?