aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luaconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luaconf.h b/luaconf.h
index fde36b56..ace3adae 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.137 2010/05/12 14:17:36 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.138 2010/05/27 12:06:42 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -234,7 +234,7 @@
234#define lua_cpcall(L,f,u) \ 234#define lua_cpcall(L,f,u) \
235 (lua_pushcfunction(L, (f)), \ 235 (lua_pushcfunction(L, (f)), \
236 lua_pushlightuserdata(L,(u)), \ 236 lua_pushlightuserdata(L,(u)), \
237 lua_pcall(L,,1,0,0)) 237 lua_pcall(L,1,0,0))
238 238
239 239
240/* 240/*