summaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-07-15 18:26:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-07-15 18:26:50 -0300
commit5bbb4a06a692ec2c9773274f0f99c7573838e86b (patch)
tree4bfac6a4dde1a3f0764b7bdbdcb697a0581b9452 /ldebug.c
parentd4fb848be77f4b0209acaf37a5b5e1cee741ddce (diff)
downloadlua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.tar.gz
lua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.tar.bz2
lua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.zip
removed unused parameter Ä'L' in macro 'api_check' and company
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index dda88a20..2c3c70f3 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.96 2013/07/10 20:32:36 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.97 2013/12/09 14:21:10 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -271,7 +271,7 @@ LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
271 if (*what == '>') { 271 if (*what == '>') {
272 ci = NULL; 272 ci = NULL;
273 func = L->top - 1; 273 func = L->top - 1;
274 api_check(L, ttisfunction(func), "function expected"); 274 api_check(ttisfunction(func), "function expected");
275 what++; /* skip the '>' */ 275 what++; /* skip the '>' */
276 L->top--; /* pop function */ 276 L->top--; /* pop function */
277 } 277 }