Revert "nimsuggest: don't add CRLF to replies (#13545)" (#13597)

This reverts commit a974684b14.

The CRLF was to separate between each response, and removing them causes
the responses to not be splitted correctly.

I didn't notice that it was in a loop when I made the #13545.
This commit is contained in:
alaviss
2020-03-06 18:29:28 +00:00
committed by GitHub
parent ec8a17cc86
commit 4bd388ad58

View File

@@ -252,10 +252,10 @@ proc toSocket(stdoutSocket: Socket) {.gcsafe.} =
let res = results.recv()
case res.section
of ideNone: break
of ideMsg: stdoutSocket.send(res.doc)
of ideKnown: stdoutSocket.send($(res.quality == 1))
of ideProject: stdoutSocket.send(res.filePath)
else: stdoutSocket.send($res)
of ideMsg: stdoutSocket.send(res.doc & "\c\L")
of ideKnown: stdoutSocket.send($(res.quality == 1) & "\c\L")
of ideProject: stdoutSocket.send(res.filePath & "\c\L")
else: stdoutSocket.send($res & "\c\L")
proc toEpc(client: Socket; uid: BiggestInt) {.gcsafe.} =
var list = newSList()