fixes #6046 parsecfg failed to parse negative int (#6097)

This commit is contained in:
andri lim
2017-07-14 21:28:39 +07:00
committed by Andreas Rumpf
parent 8bdcade1a0
commit ca0155a458
2 changed files with 30 additions and 3 deletions

View File

@@ -320,9 +320,13 @@ proc rawGetTok(c: var CfgParser, tok: var Token) =
tok.literal = "="
of '-':
inc(c.bufpos)
if c.buf[c.bufpos] == '-': inc(c.bufpos)
tok.kind = tkDashDash
tok.literal = "--"
if c.buf[c.bufpos] == '-':
inc(c.bufpos)
tok.kind = tkDashDash
tok.literal = "--"
else:
dec(c.bufpos)
getSymbol(c, tok)
of ':':
tok.kind = tkColon
inc(c.bufpos)