summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--compiler/lexer.nim5
-rw-r--r--nimpretty/tester.nim3
2 files changed, 3 insertions, 5 deletions
diff --git a/compiler/lexer.nim b/compiler/lexer.nim
index 0cf00e612..9b1dc642d 100644
--- a/compiler/lexer.nim
+++ b/compiler/lexer.nim
@@ -758,8 +758,9 @@ proc handleCRLF(L: var Lexer, pos: int): int =
   template registerLine =
     let col = L.getColNumber(pos)
 
-    if col > MaxLineLength:
-      lexMessagePos(L, hintLineTooLong, pos)
+    when not defined(nimpretty):
+      if col > MaxLineLength:
+        lexMessagePos(L, hintLineTooLong, pos)
 
   case L.buf[pos]
   of CR:
diff --git a/nimpretty/tester.nim b/nimpretty/tester.nim
index 6124eb66a..d646b25ce 100644
--- a/nimpretty/tester.nim
+++ b/nimpretty/tester.nim
@@ -60,7 +60,4 @@ for t in allFiles:
 testTogether(allFiles)
 removeDir(outputdir)
 
-
-
-
 if failures > 0: quit($failures & " failures occurred.")