From aca84ee1a04987f7cfe8c4e4126c953351d1216f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 28 May 2010 11:27:07 -0300 Subject: correct definition for 'lua_cpcall' (tested) --- luaconf.h | 4 ++-- 1 file 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 @@ /* -** $Id: luaconf.h,v 1.137 2010/05/12 14:17:36 roberto Exp roberto $ +** $Id: luaconf.h,v 1.138 2010/05/27 12:06:42 roberto Exp roberto $ ** Configuration file for Lua ** See Copyright Notice in lua.h */ @@ -234,7 +234,7 @@ #define lua_cpcall(L,f,u) \ (lua_pushcfunction(L, (f)), \ lua_pushlightuserdata(L,(u)), \ - lua_pcall(L,,1,0,0)) + lua_pcall(L,1,0,0)) /* -- cgit v1.2.3-55-g6feb