It would be nice if constants such as LUA_LOADED_TABLE were available, instead of having to rely on LUA_LOADED_TABLE always being equal to "_LOADED". I think the following excerpt from the Lua reference manual is a good argument for this change:
Lua versions can always change the C API in ways that do not imply source-code changes in a program, such as the numeric values for constants or the implementation of functions as macros.
And besides, I think everyone can agree that lua.loaded_table looks nicer than "_LOADED". :-)
It would be nice if constants such as
LUA_LOADED_TABLEwere available, instead of having to rely onLUA_LOADED_TABLEalways being equal to"_LOADED". I think the following excerpt from the Lua reference manual is a good argument for this change:And besides, I think everyone can agree that
lua.loaded_tablelooks nicer than"_LOADED". :-)