# HG changeset patch # User Matti Hamalainen # Date 1234188235 -7200 # Node ID 50c30f624bbdeae1665301cc4616b5dbd9fec23b # Parent c8648efaebba1ffadf0646f69729b71e366b147d Whitespace cleanup. diff -r c8648efaebba -r 50c30f624bbd src/xs_title.c --- a/src/xs_title.c Mon Feb 09 16:03:26 2009 +0200 +++ b/src/xs_title.c Mon Feb 09 16:03:55 2009 +0200 @@ -51,17 +51,17 @@ /* Create a title string based on given information and settings. */ -#define VPUTCH(MCH) \ +#define VPUTCH(MCH) \ if (index < XS_BUF_SIZE) tmpBuf[index++] = MCH; -#define VPUTSTR(MSTR) { \ - if (MSTR != NULL) { \ - if ((index + strlen(MSTR) + 1) < XS_BUF_SIZE) {\ - strcpy(&tmpBuf[index], MSTR); \ - index += strlen(MSTR); \ - } else \ - index = XS_BUF_SIZE; \ - } \ +#define VPUTSTR(MSTR) { \ + if (MSTR != NULL) { \ + if ((index + strlen(MSTR) + 1) < XS_BUF_SIZE) { \ + strcpy(&tmpBuf[index], MSTR); \ + index += strlen(MSTR); \ + } else \ + index = XS_BUF_SIZE; \ + } \ }