Added carriage return and linefeed check to os::parseCmdLine ti delimiting whitespace eating.

This commit is contained in:
Dwight Schauer
2014-08-05 18:57:45 -05:00
parent 1e8a9aead0
commit 530d210c91

View File

@@ -1457,7 +1457,8 @@ proc parseCmdLine*(c: string): seq[string] {.
var a = ""
while true:
setLen(a, 0)
while c[i] == ' ' or c[i] == '\t': inc(i)
# eat all delimiting whitespace
while c[i] == ' ' or c[i] == '\t' or c [i] == '\l' or c [i] == '\r' : inc(i)
when defined(windows):
# parse a single argument according to the above rules:
if c[i] == '\0': break