1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 04:46:37 +02:00

Fix function "color" in Lua script API (patch from Christian Heinz)

This commit is contained in:
Sebastien Helleu
2010-02-18 07:58:03 +01:00
parent b1e840eb6c
commit 832a4c1466
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -2875,7 +2875,7 @@ weechat_lua_api_color (lua_State *L)
color = lua_tostring (lua_current_interpreter, -1);
result = weechat_prefix (color);
result = weechat_color (color);
LUA_RETURN_STRING(result);
}