| Commit message (Collapse) | Author | Files | Lines |
|
Fixes this:
```In file included from liolib.c:10:0:
lprefix.h:201:0: warning: "LUA_USE_POSIX" redefined [enabled by default]
# define LUA_USE_POSIX 1
^
In file included from /usr/include/lua.h:16:0,
from c-api/compat-5.3.h:10,
from lprefix.h:46,
from liolib.c:10:
/usr/include/luaconf.h:21:0: note: this is the location of the previous definition
#define LUA_USE_POSIX
^
In file included from liolib.c:10:0:
lprefix.h:202:9: error: missing ')' in expression
# elif (defined(_MSC_VER)
```
|
|
|
|
|
|
|
|
Regarding the copyright:
Kepler Project did not exist as an entity in 2015,
and the original copyright for lua-compat-5.2 on which
this is based said "Copyright 2013 Hisham Muhammad."
The updated notice should be a better representation of
authorship, including the copyright for the parts included
from upstream Lua.
|
|
This should avoid issues with multiple evaluations of the arguments,
which should be very rare, but could in principle happen.
|
|
|