changeset 121:dad765129133

Remove #ifdef __WIN32 around non-win32 specific code.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 29 Oct 2010 10:54:40 +0300
parents 804c7db454b4
children e564dd9df07c
files nnchat.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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++;
         }
     }