Fix UTF-8 on MirBSD (Thorsten Glaser)
authorMikael Berthe <mikael@lilotux.net>
Fri, 11 Apr 2008 19:43:54 +0200
changeset 1457 3a537b4d7f8d
parent 1456 5e99e802656c
child 1458 17e95be6c39b
Fix UTF-8 on MirBSD (Thorsten Glaser)
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);