changeset 405:b4ed5d574edc

Add some empty lines.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 24 May 2012 05:31:18 +0300
parents d11a68f214eb
children 8a5a81c465f0
files nnchat.c
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/nnchat.c	Thu May 24 05:29:03 2012 +0300
+++ b/nnchat.c	Thu May 24 05:31:18 2012 +0300
@@ -1132,6 +1132,7 @@
     return result ? 0 : -1;
 }
 
+
 void closeWindows(void)
 {
     if (mainWin) delwin(mainWin);
@@ -1139,6 +1140,7 @@
     if (editWin) delwin(editWin);
 }
 
+
 BOOL initializeWindows(void)
 {
     int w, h;
@@ -1157,6 +1159,7 @@
     return TRUE;
 }
 
+
 void updateWindows(void)
 {
     if (mainWin) redrawwin(mainWin);
@@ -1164,6 +1167,7 @@
     if (editWin) redrawwin(editWin);
 }
 
+
 BOOL performTabCompletion(nn_editbuf_t *buf)
 {
     static char *previous = NULL, *pattern = NULL;
@@ -1290,6 +1294,7 @@
     return FALSE;
 }
 
+
 #define VPUTCH(CH)  th_vputch(&bufData, &bufSize, &bufLen, CH)
 #define VPUTS(STR)  th_vputs(&bufData, &bufSize, &bufLen, STR)
 
@@ -1356,6 +1361,7 @@
     return TRUE;
 }
 
+
 void logFileClose(void)
 {
     if (optLogFile)
@@ -1365,6 +1371,7 @@
     }
 }
 
+
 char *promptRequester(WINDOW *win, const char *info, BOOL allowEmpty)
 {
     char tmpBuf[512], *ptr;
@@ -1389,6 +1396,7 @@
         return NULL;
 }
 
+
 void printHelp(void)
 {
     printMsgQ(currWin, "\n"
@@ -1400,6 +1408,7 @@
     );
 }
 
+
 int main(int argc, char *argv[])
 {
     nn_conn_t *conn = NULL;