Just changed a comment.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1212 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2007-01-20 15:16:26 +00:00
parent 71023d9aad
commit baf9c6988e

View File

@ -103,9 +103,9 @@ static void findPythonTags (void)
{ {
cp++; cp++;
// count indentation amount of current line // count indentation amount of current line
// the indentation has to be made with tabs only _or_ spaces only, if they are mixed
// the code below gets confused
indent++; indent++;
/// TODO should be improved by separating between tabs and spaces but to do this we
/// have to know the tabulator width which is set in geany and not available here
} }
else if (*cp == '#') else if (*cp == '#')
break; break;