summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index 73c3851bc1..46572014f0 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -38,6 +38,10 @@
38 * a C function just pushes them onto the stack, in direct order (the first result is pushed first), 38 * a C function just pushes them onto the stack, in direct order (the first result is pushed first),
39 * and returns the number of results. Any other value in the stack below the results will be properly 39 * and returns the number of results. Any other value in the stack below the results will be properly
40 * discarded by Lua. Like a Lua function, a C function called by Lua can also return many results. 40 * discarded by Lua. Like a Lua function, a C function called by Lua can also return many results.
41 *
42 * When porting new functions, don't forget to check rocklib_aux.pl whether it automatically creates
43 * wrappers for the function and if so, add the function names to @forbidden_functions. This is to
44 * prevent namespace collisions and adding duplicate wrappers.
41 */ 45 */
42 46
43 47