diff options
author | Andreas Rumpf <andreas@andreas-laptop> | 2010-04-04 18:43:57 +0200 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-laptop> | 2010-04-04 18:43:57 +0200 |
commit | b2ad7b30dc5866a92e239acfd6032e5fb005a240 (patch) | |
tree | 9bd3fd86c200c45e3c08c27b1a215408752af48e /tools | |
parent | f530bbd6315f21469d7479991186e88302608726 (diff) | |
download | Nim-b2ad7b30dc5866a92e239acfd6032e5fb005a240.tar.gz |
bugfix: complex.nim compiles
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/nimrepl.nim | 3 |
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 |