# HG changeset patch # User Mikael Berthe # Date 1207935834 -7200 # Node ID 3a537b4d7f8d213939bf743f49864f06a05cda3f # Parent 5e99e802656c2f3697cf53fe106cc7996bbfb671 Fix UTF-8 on MirBSD (Thorsten Glaser) diff -r 5e99e802656c -r 3a537b4d7f8d mcabber/src/screen.c --- a/mcabber/src/screen.c Fri Apr 11 19:35:07 2008 +0200 +++ b/mcabber/src/screen.c Fri Apr 11 19:43:54 2008 +0200 @@ -1477,7 +1477,11 @@ if (fullinit) { // Enable keypad (+ special keys) keypad(inputWnd, TRUE); +#ifdef __MirBSD__ + wtimeout(inputWnd, 50 /* ms */); +#else nodelay(inputWnd, TRUE); +#endif // Create panels rosterPanel = new_panel(rosterWnd);