nimpretty: fixes #9673 [backport]

(cherry picked from commit 532647171e)
This commit is contained in:
Andreas Rumpf
2018-11-11 10:07:19 +01:00
committed by narimiran
parent 172e95be50
commit fa3017f6bb
3 changed files with 7 additions and 1 deletions

View File

@@ -246,7 +246,7 @@ proc emitTok*(em: var Emitter; L: TLexer; tok: TToken) =
wr(TokTypeToStr[tok.tokType])
if not em.inquote: wr(" ")
of tkOpr, tkDotDot:
if tok.strongSpaceA == 0 and tok.strongSpaceB == 0:
if (tok.strongSpaceA == 0 and tok.strongSpaceB == 0) or em.inquote:
# bug #9504: remember to not spacify a keyword:
lastTokWasTerse = true
# if not surrounded by whitespace, don't produce any whitespace either:

View File

@@ -357,3 +357,6 @@ proc fun3() =
##[
foobar
]##
# bug #9673
discard `* `(1, 2)

View File

@@ -366,3 +366,6 @@ proc fun3() =
##[
foobar
]##
# bug #9673
discard `*`(1, 2)