q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8146db3b77124a5a86a926b3733435898fe9b8fa
commit 8146db3b77124a5a86a926b3733435898fe9b8fa Author: Daniel Kolesa <[email protected]> Date: Fri Jan 13 15:46:18 2017 +0100 docs: generate correct eolian function signatures Now signatures don't contain full class name, just func name. --- src/scripts/elua/apps/gendoc.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua index dada234..f878442 100644 --- a/src/scripts/elua/apps/gendoc.lua +++ b/src/scripts/elua/apps/gendoc.lua @@ -97,8 +97,6 @@ local gen_func_namesig = function(fn, cl, buf, isprop, isget, isset) if isprop then buf[#buf + 1] = "@property " end - buf[#buf + 1] = cl:full_name_get() - buf[#buf + 1] = "." buf[#buf + 1] = fn:name_get() buf[#buf + 1] = " " if not isprop then --
