This commit is contained in:
Mirek Fidler 2023-09-15 13:02:45 +02:00
commit b74941bc1c
2 changed files with 2 additions and 2 deletions

View file

@ -402,7 +402,7 @@ void XmlParser::Next()
int w = tagtext.Find('\"', q);
if(w < 0)
return;
q = CharsetByName(tagtext.Mid(q, w));
q = CharsetByName(tagtext.Mid(q, w - q));
if(q)
scharset = q;
return;

View file

@ -402,7 +402,7 @@ void AppMain___()
if(FileExists(crash_file)) {
if(LibClangEnabled &&
PromptYesNo("TheIDE has crashed the last time it was run. As the possible "
"cause is libclang incompatibility, we are suggesting to disable Assist features for now."))
"cause is libclang incompatibility, we Assist features are disabled for now."))
LibClangEnabled = false;
DeleteFile(crash_file);
}