Use 'comment' named style for D nested comments

This also fixes a wrong style key name for filetypes.d.
(Nested comments aren't necessarily doc-comments).
This commit is contained in:
Nick Treleaven 2011-12-16 21:02:39 +00:00
parent adfbfa5838
commit ef3d5b8417
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ default=default
comment=comment
commentline=comment_line
commentdoc=comment_doc
commentdocnested=comment_doc
commentnested=comment
number=number_1
word=keyword_1
word2=keyword_2

View File

@ -349,7 +349,7 @@ static const HLStyle highlighting_styles_D[] =
{ SCE_D_COMMENT, "comment", FALSE },
{ SCE_D_COMMENTLINE, "commentline", FALSE },
{ SCE_D_COMMENTDOC, "commentdoc", FALSE },
{ SCE_D_COMMENTNESTED, "commentdocnested", FALSE },
{ SCE_D_COMMENTNESTED, "commentnested", FALSE },
{ SCE_D_NUMBER, "number", FALSE },
{ SCE_D_WORD, "word", FALSE },
{ SCE_D_WORD2, "word2", FALSE },