From 976746f97fb5f0cd0a987b592f4d81c18ab2587f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 30 Mar 2013 23:07:38 +0100 Subject: [PATCH] ctk-curses: cleanup --- platform/native/ctk/ctk-curses.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/platform/native/ctk/ctk-curses.c b/platform/native/ctk/ctk-curses.c index 192284435..c5a4b4d61 100644 --- a/platform/native/ctk/ctk-curses.c +++ b/platform/native/ctk/ctk-curses.c @@ -45,6 +45,8 @@ /* references: * http://math.hws.edu/orr/s04/cpsc225/curses.html + * http://linux.die.net/man/3/ncurses + * http://linux.die.net/HOWTO/NCURSES-Programming-HOWTO/index.html */ #define MKPAIR(bg, fg) (bg << 3 | fg) @@ -114,10 +116,6 @@ console_init(void) /* will display an error and exit if the term can't be initialized */ /*setupterm((char *)0, STDOUT_FILENO, (int *)0); */ - /* references: - * http://linux.die.net/man/3/ncurses - * http://linux.die.net/HOWTO/NCURSES-Programming-HOWTO/index.html - */ initscr(); start_color(); cbreak();