lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi,

>
> On Tuesday, April 6, 2021, 02:23:28 PM PDT, Roberto Ierusalimschy
> <roberto@inf.puc-rio.br> wrote:
> > Some of the lua error messages are different between the 5.4.2 and
> > the5.4.3 releases. This breaks the Vim lua tests (as it checks for
> > specificlua error messages) as reported in the following bug report:
> > Some lua tests fail with lua 5.4 · Issue #8042 · vim/vim
> > [...]
> Thanks for the report. Can you describe what messages have changed?
>
> -- Roberto

The following messages are changed between Lua 5.4.2 and 5.4.3:

5.4.2:
[string \"vim chunk\"]:1: attempt to call a nil value (global 'func')

5.4.3:
[string \"vim chunk\"]:1: global 'func' is not callable (a nil value)

5.4.2:
[string \"luaeval\"]:1: attempt to call a nil value (field 'xyz')

5.4.3:
[string \"luaeval\"]:1: field 'xyz' is not callable (a nil value)

5.4.2:
[string \"vim chunk\"]:1: attempt to call a nil value (method 'xyz')

5.4.3:
[string \"vim chunk\"]:1: method 'xyz' is not callable (a nil value)

- Yegappan