summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ldo.h4
-rw-r--r--lgc.h4
2 files changed, 4 insertions, 4 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
diff --git a/lgc.h b/lgc.h
index 39691b33..75f24bc0 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.89 2015/10/20 18:00:19 roberto Exp roberto $ 2** $Id: lgc.h,v 2.90 2015/10/21 18:15:15 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -112,7 +112,7 @@
112 condchangemem(L,pre,pos); } 112 condchangemem(L,pre,pos); }
113 113
114/* more often than not, 'pre'/'pos' are empty */ 114/* more often than not, 'pre'/'pos' are empty */
115#define luaC_checkGC(L) luaC_condGC(L,,) 115#define luaC_checkGC(L) luaC_condGC(L,(void)0,(void)0)
116 116
117 117
118#define luaC_barrier(L,p,v) ( \ 118#define luaC_barrier(L,p,v) ( \