Python compilation problem in X11 fixed #1372

git-svn-id: svn://ultimatepp.org/upp/trunk@9436 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-01-26 19:50:22 +00:00
parent cf35e9df2f
commit bce9b4ad46
2 changed files with 2 additions and 2 deletions

View file

@ -166,7 +166,7 @@ int PythonSyntax::CalculateLineIndetations(const WString& line, Identation::Type
PythonSyntax::Identation::Type PythonSyntax::FindIdentationType(CodeEditor& editor, const WString& line)
{
Identation::Type type = Identation::None;
Identation::Type type = Identation::Unknown;
if(line.StartsWith("\t"))
type = Identation::Tab;
else