lua-users home
lua-l archive

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


> I noticed that Lua code sometimes uses macros where a static inline function
> would appear to work equally as well.
> [...]
> 
> How interested would the Lua development team be in replacing such macros with
> functions in the future?

Inline functions is not present in C89, and Lua is (still) compatible
with C89.

-- Roberto