From 7fa4d6d9ebb61653ef2735bc261aedd2ef1568d8 Mon Sep 17 00:00:00 2001 From: steve donovan Date: Sat, 30 Jul 2011 11:04:54 +0200 Subject: [PATCH] if the doc item has an explicit name, don't try to deduce item further --- ldoc/parse.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldoc/parse.lua b/ldoc/parse.lua index 8b66bf6..1ee7c87 100644 --- a/ldoc/parse.lua +++ b/ldoc/parse.lua @@ -164,7 +164,7 @@ local function parse_file(fname,lang, package) if doc.project_level(tags.class) then module_found = tags.name end - if tags.class == 'function' then + if tags.name then item_follows, is_local = false, false end end