summaryrefslogtreecommitdiffhomepage
path: root/contrib/luacurses/test/pair.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/pair.lua
parentc3426d56b1551fd8233a5cd642db2009801b0ab5 (diff)
contrib: drop luacurses, it was never used and fails the build on modern distros
Diffstat (limited to 'contrib/luacurses/test/pair.lua')
-rw-r--r--contrib/luacurses/test/pair.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/luacurses/test/pair.lua b/contrib/luacurses/test/pair.lua
deleted file mode 100644
index f269800613..0000000000
--- a/contrib/luacurses/test/pair.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-
-require("curses");
-
-curses.initscr();
-
-curses.start_color();
-curses.init_pair(1, curses.COLOR_BLUE, curses.COLOR_YELLOW);
-curses.init_pair(2, curses.COLOR_CYAN, curses.COLOR_RED);
-
-for i = 1, 2 do
- local r, f, b = curses.pair_content(i);
- curses.attrset(curses.COLOR_PAIR(i));
- curses.addstr(f .. ", " .. b .. "\n");
-end
-
-curses.getch();
-curses.endwin();
-