emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Fwd: Re: 24.1.50; doxygen comments not highlighted in c++-


From: Toon Claes
Subject: [Emacs-diffs] Fwd: Re: 24.1.50; doxygen comments not highlighted in c++-mode
Date: Tue, 30 Oct 2012 13:39:55 +0100
User-agent: Roundcube Webmail/0.8.2

fixes bug: http://debbugs.gnu.org/11865
committer: Toon Claes <address@hidden>
branch nick: trunk
message:
  Improve gtkdoc compatibility.
modified:
  lisp/progmodes/cc-fonts.el
  lisp/progmodes/cc-vars.el

=== modified file 'lisp/ChangeLog'
--- lisp/ChangeLog 2012-07-06 07:08:10 +0000
+++ lisp/ChangeLog 2012-07-06 13:48:51 +0000
@@ -1,3 +1,11 @@
+2012-07-06 Toon Claes <address@hidden>
+
+ * progmodes/cc-fonts.el (gtkdoc-font-lock-keywords):
+ Less restrictive checking for gtkdoc.
+
+ * progmodes/cc-vars.el: For c++-mode set gtkdoc the default
+ c-doc-comment-style.
+
 2012-07-06 Glenn Morris <address@hidden>

 * Makefile.in (compile-one-process): Rename from "recompile".

=== modified file 'lisp/progmodes/cc-fonts.el'
--- lisp/progmodes/cc-fonts.el 2012-01-19 07:21:25 +0000
+++ lisp/progmodes/cc-fonts.el 2012-07-06 13:49:00 +0000
@@ -2572,7 +2572,7 @@

 (defconst gtkdoc-font-lock-keywords
 `((,(lambda (limit)
- (c-font-lock-doc-comments "/**$" limit
+ (c-font-lock-doc-comments "/**([^*/].*)?$" limit
 gtkdoc-font-lock-doc-comments)
 (c-font-lock-doc-comments "/*< " limit
 gtkdoc-font-lock-doc-protection)

=== modified file 'lisp/progmodes/cc-vars.el'
--- lisp/progmodes/cc-vars.el 2012-02-11 22:13:29 +0000
+++ lisp/progmodes/cc-vars.el 2012-07-06 13:48:46 +0000
@@ -552,7 +552,8 @@
 (defcustom-c-stylevar c-doc-comment-style
 '((java-mode . javadoc)
 (pike-mode . autodoc)
- (c-mode . gtkdoc))
+ (c-mode . gtkdoc)
+ (c++-mode . gtkdoc))
 "*Specifies documentation comment style(s) to recognize.
 This is primarily used to fontify doc comments and the markup within
 them, e.g. Javadoc comments.
@@ -562,7 +563,7 @@

 javadoc -- Javadoc style for "/** ... */" comments (default in Java
mode).
 autodoc -- Pike autodoc style for "//! ..." comments (default in Pike
mode).
- gtkdoc -- GtkDoc style for "/** ... **/" comments (default in C
mode).
+ gtkdoc -- GtkDoc style for "/** ... **/" comments (default in C/C++
mode).

 The value may also be a list of doc comment styles, in which case all
 of them are recognized simultaneously (presumably with markup cues



reply via email to

[Prev in Thread] Current Thread [Next in Thread]