# HG changeset patch # User jbe # Date 1452306651 -3600 # Node ID a09a0defb48ad9600a221aea43e8a7e186d6c4f5 # Parent 7d43be9afa565d1a781251188070b689fc42e7dd Removed some line-breaks diff -r 7d43be9afa56 -r a09a0defb48a libraries/mondelefant/mondelefant_native.c --- a/libraries/mondelefant/mondelefant_native.c Fri Jan 08 03:10:33 2016 +0100 +++ b/libraries/mondelefant/mondelefant_native.c Sat Jan 09 03:30:51 2016 +0100 @@ -1465,10 +1465,7 @@ if (!lua_toboolean(L, 2)) { // set "prototype" attribute to default prototype: lua_pushliteral(L, "prototype"); // 3 - lua_getfield(L, - LUA_REGISTRYINDEX, - MONDELEFANT_CLASS_PROTO_REGKEY - ); // 4 + lua_getfield(L, LUA_REGISTRYINDEX, MONDELEFANT_CLASS_PROTO_REGKEY); // 4 lua_rawset(L, 1); } // set "object" attribute to empty table, unless it is already set: @@ -1589,10 +1586,7 @@ lua_getfield(L, 1, "_class"); // 3 if (!lua_toboolean(L, 3)) { lua_settop(L, 2); - lua_getfield(L, - LUA_REGISTRYINDEX, - MONDELEFANT_CLASS_PROTO_REGKEY - ); // 3 + lua_getfield(L, LUA_REGISTRYINDEX, MONDELEFANT_CLASS_PROTO_REGKEY); // 3 } // get value of "_type" attribute: lua_getfield(L, 1, "_type"); // 4 @@ -1731,10 +1725,7 @@ lua_getfield(L, 1, "_class"); // 4 if (!lua_toboolean(L, 4)) { lua_settop(L, 3); - lua_getfield(L, - LUA_REGISTRYINDEX, - MONDELEFANT_CLASS_PROTO_REGKEY - ); // 4 + lua_getfield(L, LUA_REGISTRYINDEX, MONDELEFANT_CLASS_PROTO_REGKEY); // 4 } // get value of "_type" attribute: lua_getfield(L, 1, "_type"); // 5