Bugfix copying from Chat Box, own lines
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 14 Feb 2010 22:17:23 +0000 (23:17 +0100)
committerArun Persaud <arun@nubati.net>
Sat, 20 Feb 2010 22:57:59 +0000 (14:57 -0800)
The tell messages sent to a handle (which are not echoed by the ICS, and
thus have to copied to the chat box directly) had no CR in them yet.

winboard/wchat.c

index 4cf8dce..d5d6366 100644 (file)
@@ -204,7 +204,7 @@ LRESULT CALLBACK ChatProc( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam
                sprintf(buf, "whisper %s\n", mess); // WHISPER box uses "whisper" to send\r
            else {\r
                if(!atoi(chatPartner[partner])) {\r
-                   sprintf(buf, "> %s\n", mess); // echo only tells to handle, not channel\r
+                   sprintf(buf, "> %s\r\n", mess); // echo only tells to handle, not channel\r
                InsertIntoMemo(hDlg, buf);\r
                sprintf(buf, "xtell %s %s\n", chatPartner[partner], mess);\r
                } else\r