Fix #8: set loale post ncurses init

This commit is contained in:
Arun Prakash Jana 2017-04-14 19:43:37 +05:30
parent 971895e873
commit eb053063c2
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

5
nnn.c
View File

@ -477,6 +477,9 @@ initcurses(void)
keypad(stdscr, TRUE);
curs_set(FALSE); /* Hide cursor */
timeout(1000); /* One second */
/* Set locale */
setlocale(LC_ALL, "");
}
static void
@ -1654,8 +1657,6 @@ main(int argc, char *argv[])
exit(1);
}
/* Set locale before curses setup */
setlocale(LC_ALL, "");
initcurses();
browse(ipath, ifilter);
exitcurses();