1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:27:45 +02:00

Merge pull request #10 from manuel-arguelles/check_locale

Add check for setlocale()
This commit is contained in:
stal 2013-08-26 13:02:25 -07:00
commit 222124742c

View File

@ -50,7 +50,13 @@ static void init_term()
{
/* Setup terminal */
signal(SIGWINCH, on_window_resize);
setlocale(LC_ALL, "");
#if HAVE_WIDECHAR
if (setlocale(LC_ALL, "") == NULL) {
printf("Could not set your locale, plese check your locale settings or"
"disable wide char support\n");
exit(1);
}
#endif
initscr();
cbreak();
keypad(stdscr, 1);