changeset 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 5e99e802656c
children 17e95be6c39b
files mcabber/src/screen.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
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);