diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-16 20:54:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-16 20:54:51 +0000 |
commit | e9786c31996333716b6eff411cad4c915eba5b45 (patch) | |
tree | 061ced77b98a8156a3c77e31dd1445e1745d3931 /clang/lib/Rewrite/HTMLRewrite.cpp | |
parent | 0bb0e7ee8a100cb036c248c3b1335d9046cbecb8 (diff) | |
download | bcm5719-llvm-e9786c31996333716b6eff411cad4c915eba5b45.tar.gz bcm5719-llvm-e9786c31996333716b6eff411cad4c915eba5b45.zip |
reenable highlighting of (the first line of) comments
llvm-svn: 49816
Diffstat (limited to 'clang/lib/Rewrite/HTMLRewrite.cpp')
-rw-r--r-- | clang/lib/Rewrite/HTMLRewrite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Rewrite/HTMLRewrite.cpp b/clang/lib/Rewrite/HTMLRewrite.cpp index 682fffd82ae..fc50eb1151c 100644 --- a/clang/lib/Rewrite/HTMLRewrite.cpp +++ b/clang/lib/Rewrite/HTMLRewrite.cpp @@ -237,7 +237,7 @@ void html::SyntaxHighlight(Rewriter &R, unsigned FileID, Preprocessor &PP) { // Inform the preprocessor that we want to retain comments as tokens, so we // can highlight them. - //PP.SetCommentRetentionState(true, false); + L.SetCommentRetentionState(true); // Lex all the tokens in raw mode, to avoid entering #includes or expanding // macros. |