]> git.saurik.com Git - cycript.git/blobdiff - Highlight.cpp
Store all unstable Class CYONifications in a set.
[cycript.git] / Highlight.cpp
index e5a476d2e31b27a89784fa395f6bd4bb294549a7..0a077a8a7b58f0bb6bc43184f944508f627c85b1 100644 (file)
 /* }}} */
 
 #include "Highlight.hpp"
+#include "Parser.hpp"
 
 #include "Cycript.tab.hh"
-#include "Parser.hpp"
+#include "Driver.hpp"
 
 static void Skip(const char *data, size_t size, std::ostream &output, size_t &offset, cy::position &current, cy::position target) {
     while (current.line != target.line || current.column != target.column) {
@@ -73,7 +74,7 @@ void CYLexerHighlight(const char *data, size_t size, std::ostream &output, bool
             case hi::Comment: color = CYColor(true, 30); break;
             case hi::Constant: color = CYColor(false, 31); break;
             case hi::Control: color = CYColor(false, 33); break;
-            case hi::Escape: color = CYColor(true, 31); break;
+            case hi::Error: color = CYColor(true, 31); break;
             case hi::Identifier: color = CYColor(false, 0); break;
             case hi::Meta: color = CYColor(false, 32); break;
             case hi::Nothing: color = CYColor(false, 0); break;