mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
call setlocale(LC_ALL, ) once in fe-text/irssi.c and not everytime recode_get_charset() is called in recode.c
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3703 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f4c1b605ed
commit
b5f93b6164
2 changed files with 5 additions and 5 deletions
|
|
@ -362,6 +362,10 @@ int main(int argc, char **argv)
|
|||
of UTF-8 currently.. */
|
||||
setlocale(LC_CTYPE, "");
|
||||
|
||||
/* to get the users's charset with g_get_charset() properly you have
|
||||
to call setlocale(LC_ALL, "") aswell */
|
||||
setlocale(LC_ALL, "");
|
||||
|
||||
textui_init();
|
||||
args_register(options);
|
||||
args_execute(argc, argv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue