diff --git a/uppsrc/CodeEditor/TagSyntax.cpp b/uppsrc/CodeEditor/TagSyntax.cpp index b73eb0173..092b5f25c 100644 --- a/uppsrc/CodeEditor/TagSyntax.cpp +++ b/uppsrc/CodeEditor/TagSyntax.cpp @@ -213,7 +213,7 @@ doscript: if(status == ATTR) { if(*s == '=') { s++; - Put(); + Put0(INK_UPP); } s = Spaces(s, e); int c = *s; diff --git a/uppsrc/CodeEditor/init b/uppsrc/CodeEditor/init index ed5b8df8a..10cfbc151 100644 --- a/uppsrc/CodeEditor/init +++ b/uppsrc/CodeEditor/init @@ -1,7 +1,7 @@ #ifndef _CodeEditor_icpp_init_stub #define _CodeEditor_icpp_init_stub #include "CtrlLib/init" -#define BLITZ_INDEX__ Fa19bf999ba2b201492446aa335bd578e +#define BLITZ_INDEX__ Fd579c6629af5990c016d4bd1dc2b4c20 #include "CRegister.icpp" #undef BLITZ_INDEX__ #endif diff --git a/uppsrc/ide/Errors.cpp b/uppsrc/ide/Errors.cpp index 07914603f..8104ecbe1 100644 --- a/uppsrc/ide/Errors.cpp +++ b/uppsrc/ide/Errors.cpp @@ -72,8 +72,8 @@ bool Ide::FindLineError(const String& ln, FindLineErrorCache& cache, ErrorInfo& f.linepos = p.ReadInt(); const char *ms = p.GetPtr(); int pos = ms - ~ln; - f.kind = ln.Find("error", pos) > 0 ? 1 : - ln.Find("warning", pos) > 0 ? 2 : + f.kind = ln.Find("warning", pos) > 0 ? 2 : + ln.Find("error", pos) > 0 ? 1 : ln.Find("note", pos) > 0 ? 3 : 4; const char *hs = ms; while(!IsLetter(*hs) && *hs)