From eb38654cae18857336ab983ff2fc50c7f55923d1 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 15 Jan 2012 16:51:52 +0100 Subject: [PATCH] Revert "screen: Add screen.by_coords()" This reverts commit 826861d9678f75a40a2129ec5a25b3ca5fdca299. --- screen.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/screen.c b/screen.c index eb2890205..3dc70d49c 100644 --- a/screen.c +++ b/screen.c @@ -662,26 +662,9 @@ luaA_screen_count(lua_State *L) return 1; } -/** Get a screen by coordinates. - * \param L The Lua VM state. - * \return The number of elements pushed on stack. - * - * \luastack - * \lreturn The screen count, at least 1. - */ -static int -luaA_screen_by_coords(lua_State *L) -{ - int x = luaL_checknumber(L, 1); - int y = luaL_checknumber(L, 2); - luaA_pushscreen(L, screen_getbycoord(x, y)); - return 1; -} - const struct luaL_reg awesome_screen_methods[] = { { "count", luaA_screen_count }, - { "by_coords", luaA_screen_by_coords }, { "__index", luaA_screen_module_index }, { NULL, NULL } };