1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Lua get_get_current_recipient

This commit is contained in:
James Booth 2013-09-15 16:45:38 +01:00
parent d90b15779e
commit e731c61480

View File

@ -113,15 +113,15 @@ lua_api_send_line(lua_State *L)
static int
lua_api_get_current_recipient(lua_State *L)
{
/*
char *recipient = api_get_current_recipient();
const char *recipient = api_get_current_recipient();
if (recipient != NULL) {
return Py_BuildValue("s", recipient);
lua_pushstring(L, recipient);
} else {
return Py_BuildValue("");
lua_pushnil(L);
}
*/
return 0;
return 1;
}
static int