diff options
Diffstat (limited to 'scripts/adeptsensedoc.lua')
-rw-r--r-- | scripts/adeptsensedoc.lua | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/adeptsensedoc.lua b/scripts/adeptsensedoc.lua index cfae8898..61f651b4 100644 --- a/scripts/adeptsensedoc.lua +++ b/scripts/adeptsensedoc.lua @@ -184,12 +184,10 @@ function start(doc) end -- Tag the functions and write the apidoc. for _, f in ipairs(m.functions) do - if not f:find('no_functions') then -- ignore placeholders - local func = f:match('[^%.:]+$') - local ext_fields = module == '_G' and '' or 'class:'..module - write_tag(ctags, func, 'f', ext_fields) - write_apidoc(apidoc, m, m.functions[f]) - end + local func = f:match('[^%.:]+$') + local ext_fields = module == '_G' and '' or 'class:'..module + write_tag(ctags, func, 'f', ext_fields) + write_apidoc(apidoc, m, m.functions[f]) end -- Tag the tables and write the apidoc. for _, t in ipairs(m.tables or {}) do |