lua-users home
lua-l archive

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


> On Sat, Jul 31, 2010 at 5:08 PM, Luiz Henrique de Figueiredo
> <lhf@tecgraf.puc-rio.br> wrote:
> > Lua 5.2.0 (work4) is now available at
> >        http://www.lua.org/work/lua-5.2.0-work4.tar.gz
> 
> luaB_print (lbaselib.c) still gets the tostring global function. This
> should probably be changed to call the new luaL_tolstring (which
> luaB_tostring now calls)?

We may change that, but currently this is a "feature". (You can redefine
"tostring" to change how Lua prints stuff. Of course you may as well
redefine "print"...)

-- Roberto