lua-users home
lua-l archive

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


> But the problem is the "strlen" function is a Lua function and
> not a Zeus function :(

In Lua 5.0 "strlen" is not a predefined function anymore.  It is replaced by
"string.len" (the string lib moved into the "string" table.)  The current
zeus_hook _does_ only trap undefined global references and strlen is now one
of them!

Bye,
Wim