diff options
Diffstat (limited to 'compiler/renderverbatim.nim')
-rw-r--r-- | compiler/renderverbatim.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/renderverbatim.nim b/compiler/renderverbatim.nim index 792079b3f..c12595156 100644 --- a/compiler/renderverbatim.nim +++ b/compiler/renderverbatim.nim @@ -1,4 +1,4 @@ -import strutils +import std/strutils import ast, options, msgs @@ -40,6 +40,7 @@ type LineData = object proc tripleStrLitStartsAtNextLine(conf: ConfigRef, n: PNode): bool = # enabling TLineInfo.offsetA,offsetB would probably make this easier + result = false const tripleQuote = "\"\"\"" let src = sourceLine(conf, n.info) let col = n.info.col |