diff options
Diffstat (limited to 'compiler/lexer.nim')
-rw-r--r-- | compiler/lexer.nim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/lexer.nim b/compiler/lexer.nim index 1249f84b0..6e5506b09 100644 --- a/compiler/lexer.nim +++ b/compiler/lexer.nim @@ -714,11 +714,6 @@ proc handleCRLF(L: var TLexer, pos: int): int = if col > MaxLineLength: lexMessagePos(L, hintLineTooLong, pos) - if optEmbedOrigSrc in L.config.globalOptions: - let lineStart = cast[ByteAddress](L.buf) + L.lineStart - let line = newString(cast[cstring](lineStart), col) - addSourceLine(L.config, L.fileIdx, line) - case L.buf[pos] of CR: registerLine() |