diff options
author | Peter Drahoš <drahosp@gmail.com> | 2015-12-16 00:14:02 +0100 |
---|---|---|
committer | Peter Drahoš <drahosp@gmail.com> | 2015-12-16 00:14:02 +0100 |
commit | fcdc5efb13f0d6c03d2868b7476b73e63a291ed3 (patch) | |
tree | 5bd844d3ae48e03d1aac8ebef3dd6209549d246e /src/loadlib.c | |
parent | 94f9f6c6ed0fbc1b49ab4a896d6a587ce8815e36 (diff) | |
download | lua-5.3.tar.gz |
Diffstat (limited to 'src/loadlib.c')
-rw-r--r-- | src/loadlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/loadlib.c b/src/loadlib.c index bbf8f67..7911928 100644 --- a/src/loadlib.c +++ b/src/loadlib.c @@ -1,5 +1,5 @@ /* -** $Id: loadlib.c,v 1.126 2015/02/16 13:14:33 roberto Exp $ +** $Id: loadlib.c,v 1.127 2015/11/23 11:30:45 roberto Exp $ ** Dynamic library loader for Lua ** See Copyright Notice in lua.h ** @@ -732,7 +732,7 @@ static void createsearcherstable (lua_State *L) { int i; /* create 'searchers' table */ lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0); - /* fill it with pre-defined searchers */ + /* fill it with predefined searchers */ for (i=0; searchers[i] != NULL; i++) { lua_pushvalue(L, -2); /* set 'package' as upvalue for all searchers */ lua_pushcclosure(L, searchers[i], 1); |