comparison 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
comparison
equal deleted inserted replaced
1456:5e99e802656c 1457:3a537b4d7f8d
1475 1475
1476 1476
1477 if (fullinit) { 1477 if (fullinit) {
1478 // Enable keypad (+ special keys) 1478 // Enable keypad (+ special keys)
1479 keypad(inputWnd, TRUE); 1479 keypad(inputWnd, TRUE);
1480 #ifdef __MirBSD__
1481 wtimeout(inputWnd, 50 /* ms */);
1482 #else
1480 nodelay(inputWnd, TRUE); 1483 nodelay(inputWnd, TRUE);
1484 #endif
1481 1485
1482 // Create panels 1486 // Create panels
1483 rosterPanel = new_panel(rosterWnd); 1487 rosterPanel = new_panel(rosterWnd);
1484 chatPanel = new_panel(chatWnd); 1488 chatPanel = new_panel(chatWnd);
1485 activechatPanel = new_panel(activechatWnd); 1489 activechatPanel = new_panel(activechatWnd);