summaryrefslogtreecommitdiffhomepage
path: root/contrib/luacurses/test/getyx.lua
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-03-07 13:07:56 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-03-07 13:07:56 +0000
commit65606ca09a7f69c30dc4d749a9699d6ae84806b5 (patch)
treedfed1aaaf6a92a1e3fa7c5e11558aa0f60e77c10 /contrib/luacurses/test/getyx.lua
parentc3426d56b1551fd8233a5cd642db2009801b0ab5 (diff)
contrib: drop luacurses, it was never used and fails the build on modern distros
Diffstat (limited to 'contrib/luacurses/test/getyx.lua')
-rw-r--r--contrib/luacurses/test/getyx.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/luacurses/test/getyx.lua b/contrib/luacurses/test/getyx.lua
deleted file mode 100644
index 4600236bb1..0000000000
--- a/contrib/luacurses/test/getyx.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-
-require("curses");
-
-curses.initscr();
-while (true) do
- local s = curses.getnstr(1000);
- curses.addstr(s);
- curses.addstr(":" .. table.concat({curses.getyx(curses.stdscr())}, ' ') .. "\n");
- if (s == "exit") then break; end
-end
-
-curses.endwin();
-