aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/loadlib.c b/loadlib.c
index 3695a061..08190cb5 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.112 2013/10/07 14:20:31 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.113 2014/03/12 20:57:40 roberto Exp roberto $
3** Dynamic library loader for Lua 3** Dynamic library loader for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5** 5**
@@ -655,6 +655,12 @@ static const luaL_Reg pk_funcs[] = {
655#if defined(LUA_COMPAT_MODULE) 655#if defined(LUA_COMPAT_MODULE)
656 {"seeall", ll_seeall}, 656 {"seeall", ll_seeall},
657#endif 657#endif
658 /* placeholders */
659 {"preload", NULL},
660 {"cpath", NULL},
661 {"path", NULL},
662 {"searchers", NULL},
663 {"loaded", NULL},
658 {NULL, NULL} 664 {NULL, NULL}
659}; 665};
660 666