summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-laptop>2010-04-04 18:43:57 +0200
committerAndreas Rumpf <andreas@andreas-laptop>2010-04-04 18:43:57 +0200
commitb2ad7b30dc5866a92e239acfd6032e5fb005a240 (patch)
tree9bd3fd86c200c45e3c08c27b1a215408752af48e /tools
parentf530bbd6315f21469d7479991186e88302608726 (diff)
downloadNim-b2ad7b30dc5866a92e239acfd6032e5fb005a240.tar.gz
bugfix: complex.nim compiles
Diffstat (limited to 'tools')
-rwxr-xr-xtools/nimrepl.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/nimrepl.nim b/tools/nimrepl.nim
index 210ac2467..6f4478816 100755
--- a/tools/nimrepl.nim
+++ b/tools/nimrepl.nim
@@ -16,7 +16,8 @@ proc execCode(code: string): string =
     f.close()
   else:
     raise newException(EIO, "Unable to open file")    
-  result = osproc.execProcess("nimrod run --verbosity:0 temp.nim")
+  result = osproc.execProcess(
+      "nimrod run --verbosity:0 --hint[Conf]:off temp.nim")
 
 var shiftPressed = False
 var w: gtk2.PWindow