Skip to content

Bug in lautoc.lua with functions #25

Description

@hypernewbie
  for _, v in pairs(argtypes) do
    local fstring = fstring .. string.format(", %s", v)
  end

should be:

  for _, v in pairs(argtypes) do
    fstring = fstring .. string.format(", %s", v)
  end

Otherwise the argument list will always be a local variable and never actually contain any function types.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions