commit 653977a0ac6de8f89980764da8b88412dd6ea187
parent d6fd33e76fdeb919fd91860aa9d0f9524e6d415a
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 30 Jan 2002 15:27:31 -0200
callhook can be static
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/ldo.c b/ldo.c
@@ -134,7 +134,7 @@ void luaD_lineHook (lua_State *L, int line, lua_Hook linehook) {
}
-void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event) {
+static void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event) {
if (L->allowhooks) {
lua_Debug ar;
ar.event = event;
diff --git a/ldo.h b/ldo.h
@@ -23,7 +23,6 @@
void luaD_lineHook (lua_State *L, int line, lua_Hook linehook);
-void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event);
StkId luaD_precall (lua_State *L, StkId func);
void luaD_call (lua_State *L, StkId func, int nResults);
void luaD_poscall (lua_State *L, int wanted, StkId firstResult);