summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/lua
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2007-05-11 15:04:56 +0000
committerSebastien Helleu <flashcode@flashtux.org>2007-05-11 15:04:56 +0000
commitd395846fb7e97d98086a7fcb151912175e724abf (patch)
tree39c1811f9cde45fa4cb5fd39302bd8d9df6c4c74 /src/plugins/scripts/lua
parentbee62989f622d6bc8785207f47cff68edb196d14 (diff)
downloadweechat-d395846fb7e97d98086a7fcb151912175e724abf.zip
Removed "prefix" data for server info in plugin API (oups, why did I add that ?)
Diffstat (limited to 'src/plugins/scripts/lua')
-rw-r--r--src/plugins/scripts/lua/weechat-lua.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/scripts/lua/weechat-lua.c b/src/plugins/scripts/lua/weechat-lua.c
index 01d28a898..8cc8ae4f6 100644
--- a/src/plugins/scripts/lua/weechat-lua.c
+++ b/src/plugins/scripts/lua/weechat-lua.c
@@ -1732,10 +1732,6 @@ weechat_lua_get_server_info (lua_State *L)
lua_pushstring (lua_current_interpreter, ptr_server->nick_modes);
lua_rawset (lua_current_interpreter, -3);
- lua_pushstring (lua_current_interpreter, "prefix");
- lua_pushstring (lua_current_interpreter, ptr_server->prefix);
- lua_rawset (lua_current_interpreter, -3);
-
lua_pushstring (lua_current_interpreter, "away_time");
lua_pushstring (lua_current_interpreter, timebuffer);
lua_rawset (lua_current_interpreter, -3);