aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-03-11 22:26:08 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-03-11 22:26:08 +0000
commit428823b00e1ca8514349a1d812d1dd1092fb7370 (patch)
tree028238e5f72ad698dfb3a1d106cf11ff7dcbfcd7 /plugins/lua
parentb3a173664b53df47095cc23a7b3d589f33e88be8 (diff)
Remove debug code...
svn path=/trunk/; revision=17595
Diffstat (limited to 'plugins/lua')
-rw-r--r--plugins/lua/elua_proto.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/lua/elua_proto.c b/plugins/lua/elua_proto.c
index 83f525eeb5..87bfb7a48a 100644
--- a/plugins/lua/elua_proto.c
+++ b/plugins/lua/elua_proto.c
@@ -950,28 +950,21 @@ int Proto_register(lua_State* L) {
int Proto_commit(lua_State* L) {
lua_settop(L,0);
lua_rawgeti(L, LUA_REGISTRYINDEX, protocols_table_ref);
- elua_print_stack("Proto_commit 0 ",L);
for (lua_pushnil(L); lua_next(L, 1); lua_pop(L, 2)) {
GArray* hfa = g_array_new(TRUE,TRUE,sizeof(hf_register_info));
GArray* etta = g_array_new(TRUE,TRUE,sizeof(gint*));
Proto proto;
const gchar* proto_name;
- elua_print_stack("Proto_commit 1 ",L);
proto_name = lua_tostring(L,2);
proto = checkProto(L,3);
- elua_print_stack("Proto_commit 2 ",L);
-
lua_rawgeti(L, LUA_REGISTRYINDEX, proto->fields);
- elua_print_stack("Proto_commit 3 ",L);
-
for (lua_pushnil(L); lua_next(L, 4); lua_pop(L, 1)) {
ProtoField f = checkProtoField(L,6);
hf_register_info hfri = { &(f->hfid), {f->name,f->abbr,f->type,f->base,VALS(f->vs),f->mask,f->blob,HFILL}};
gint* ettp = &(f->ett);
- elua_print_stack("Proto_commit 4.2 ",L);
if (f->hfid != -2) {
return luaL_error(L,"fields can be registered only once");
@@ -987,9 +980,6 @@ int Proto_commit(lua_State* L) {
g_array_free(hfa,FALSE);
g_array_free(etta,FALSE);
-
- elua_print_stack("Proto_commit 5 ",L);
-
}
return 0;