From ca87afb87619efbaa94fe045670bc916e9ffe3ec Mon Sep 17 00:00:00 2001 From: Eric Mullins Date: Sun, 11 Oct 2009 17:07:27 -0600 Subject: [PATCH] Adjusted alternative joining method to obey keepLineBreaksICS --- backend.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/backend.c b/backend.c index 29f55db..a112d57 100644 --- a/backend.c +++ b/backend.c @@ -2218,8 +2218,8 @@ read_from_ics(isr, closure, data, count, error) sprintf(str, "/set-quietly interface %s\n/set-quietly style 12\n", programVersion); - strcat(str, "/set-quietly wrap 0\n"); - + if (!appData.noJoin) + strcat(str, "/set-quietly wrap 0\n"); } else if (ics_type == ICS_CHESSNET) { sprintf(str, "/style 12\n"); } else { @@ -2229,7 +2229,8 @@ read_from_ics(isr, closure, data, count, error) #ifdef WIN32 strcat(str, "$iset nohighlight 1\n"); #endif - strcat(str, "$iset nowrap 1\n"); + if (!appData.noJoin) + strcat(str, "$iset nowrap 1\n"); strcat(str, "$iset lock 1\n$style 12\n"); } SendToICS(str); -- 1.7.0.4