Kaydet (Commit) e52b0bc8 authored tarafından Enrico Tröger's avatar Enrico Tröger

Fixed wrong classification of local functions as methods(thanks to Sebastian Koch).


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@696 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 58f2a195
......@@ -3,6 +3,8 @@
* src/document.c:
Changed SEARCH_NOT_FOUND_TXT.
Fixed possible segfault when replacing tabs by spaces.
* tagmanager/python.c: Fixed wrong classification of local functions
as methods(thanks to Sebastian Koch).
2006-08-09 Enrico Tröger <enrico.troeger@uvena.de>
......
......@@ -97,7 +97,7 @@ static void findPythonTags (void)
++cp;
}
vStringTerminate (name);
if (!isspace(*line) || vStringSize(lastClass) <= 0)
if (!isspace(*line) || vStringLength(lastClass) <= 0)
makeSimpleTag (name, PythonKinds, K_FUNCTION);
else
makeSimpleScopedTag (name, PythonKinds, K_METHOD,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment