summary refs log tree commit diff stats
path: root/compiler/lexer.nim
diff options
context:
space:
mode:
authorOscar Campbell <oscar@campbell.nu>2015-05-31 03:11:44 +0200
committerOscar Campbell <oscar@campbell.nu>2015-05-31 03:11:44 +0200
commit4a1e45e3f85c668185971627849e4420c72af767 (patch)
tree8e6464c1397c036f6185a27966c27efe63a7a29b /compiler/lexer.nim
parent6a43b0e81721919d864ce053e0c0c624ba8c0127 (diff)
downloadNim-4a1e45e3f85c668185971627849e4420c72af767.tar.gz
Remove forgotten debug echo statement.
Diffstat (limited to 'compiler/lexer.nim')
-rw-r--r--compiler/lexer.nim1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/lexer.nim b/compiler/lexer.nim
index e1615ac36..bc4b46bc9 100644
--- a/compiler/lexer.nim
+++ b/compiler/lexer.nim
@@ -414,7 +414,6 @@ proc getNumber(L: var TLexer): TToken =
   # Is there still a literalish char awaiting? Then it's an error!
   if  L.buf[postPos] in literalishCharsNoDot or 
      (L.buf[postPos] == '.' and L.buf[postPos + 1] in {'0'..'9'}):
-    echo "likely literal error, additionally: '", L.buf[postPos], L.buf[postPos+1], L.buf[postPos+2], L.buf[postPos+3], "', ", postPos
     lexMessageLitNum(L, errInvalidNumber, startpos)
   # Third stage, extract actual number
   L.bufpos = startpos            # restore position