if the doc item has an explicit name, don't try to deduce item further

This commit is contained in:
steve donovan 2011-07-30 11:04:54 +02:00
parent 75a6cf14da
commit 7fa4d6d9eb
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ local function parse_file(fname,lang, package)
if doc.project_level(tags.class) then if doc.project_level(tags.class) then
module_found = tags.name module_found = tags.name
end end
if tags.class == 'function' then if tags.name then
item_follows, is_local = false, false item_follows, is_local = false, false
end end
end end