aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
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 72cce399..b2065cfa 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.27 2015/11/19 19:16:22 roberto Exp roberto $ 2** $Id: ldo.h,v 2.28 2015/11/23 11:29:43 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*/
@@ -25,7 +25,7 @@
25 { pre; luaD_growstack(L, n); pos; } else { condmovestack(L,pre,pos); } 25 { pre; luaD_growstack(L, n); pos; } else { condmovestack(L,pre,pos); }
26 26
27/* In general, 'pre'/'pos' are empty (nothing to save) */ 27/* In general, 'pre'/'pos' are empty (nothing to save) */
28#define luaD_checkstack(L,n) luaD_checkstackaux(L,n,,) 28#define luaD_checkstack(L,n) luaD_checkstackaux(L,n,(void)0,(void)0)
29 29
30 30
31 31