aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-25 14:47:14 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-25 14:47:14 -0300
commit801aaf37b14a1fad5bb49c9a4200d25680152471 (patch)
treee3cc5cdebac6d503091f4ba16444f8ecfa8dfdb2 /ldo.h
parent00af2faae71e6388ee61ef18b2c5902a42e9bc27 (diff)
downloadlua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.gz
lua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.bz2
lua-801aaf37b14a1fad5bb49c9a4200d25680152471.zip
simpler implementation for line information
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index e25d9c09..2eb5f43b 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.40 2002/01/30 17:27:53 roberto Exp roberto $ 2** $Id: ldo.h,v 1.41 2002/03/20 12:52:32 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -27,7 +27,7 @@
27#define restorestack(L,n) ((TObject *)((char *)L->stack + (n))) 27#define restorestack(L,n) ((TObject *)((char *)L->stack + (n)))
28 28
29 29
30void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); 30void luaD_lineHook (lua_State *L, int line);
31StkId luaD_precall (lua_State *L, StkId func); 31StkId luaD_precall (lua_State *L, StkId func);
32void luaD_call (lua_State *L, StkId func, int nResults); 32void luaD_call (lua_State *L, StkId func, int nResults);
33void luaD_poscall (lua_State *L, int wanted, StkId firstResult); 33void luaD_poscall (lua_State *L, int wanted, StkId firstResult);