diff mcabber/src/screen.c @ 1457:3a537b4d7f8d

Fix UTF-8 on MirBSD (Thorsten Glaser)
author Mikael Berthe <mikael@lilotux.net>
date Fri, 11 Apr 2008 19:43:54 +0200
parents bec235cd28a8
children 77afd831f8f7
line wrap: on
line diff
--- 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);