# HG changeset patch # User Matti Hamalainen # Date 1288338880 -10800 # Node ID dad765129133e50fee970ea282a2dbe5123400ae # Parent 804c7db454b473b146d0bcc0f16409f565ac3a75 Remove #ifdef __WIN32 around non-win32 specific code. diff -r 804c7db454b4 -r dad765129133 nnchat.c --- a/nnchat.c Thu Oct 28 23:54:40 2010 +0300 +++ b/nnchat.c Fri Oct 29 10:54:40 2010 +0300 @@ -262,11 +262,8 @@ } } } else { -#ifdef __WIN32 - /* A little hack for win32 + PDCurses */ if (*s != '\r') -#endif - waddch(win, ((unsigned char) *s) | col); + waddch(win, ((unsigned char) *s) | col); s++; } }