summary refs log tree commit diff stats
path: root/compiler/commands.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-06-21 10:04:26 +0200
committerAraq <rumpf_a@web.de>2015-06-21 10:04:26 +0200
commitaa8b470cf6101b1394711866b0ee4c4ad8363104 (patch)
treed39b042198ba3b4d94c9e3f71950ea2840dd8390 /compiler/commands.nim
parent87f65f5e72148d6b44e09cfd4834c9366bfacd4c (diff)
downloadNim-aa8b470cf6101b1394711866b0ee4c4ad8363104.tar.gz
use linenoise instead of GNU readline
Diffstat (limited to 'compiler/commands.nim')
-rw-r--r--compiler/commands.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim
index 7c8abd9b8..922cda3c6 100644
--- a/compiler/commands.nim
+++ b/compiler/commands.nim
@@ -17,7 +17,7 @@ template bootSwitch(name, expr, userString: expr): expr =
   const name = if expr: " " & userString else: ""
 
 bootSwitch(usedRelease, defined(release), "-d:release")
-bootSwitch(usedGnuReadline, defined(useGnuReadline), "-d:useGnuReadline")
+bootSwitch(usedGnuReadline, defined(useLinenoise), "-d:useLinenoise")
 bootSwitch(usedNoCaas, defined(noCaas), "-d:noCaas")
 bootSwitch(usedBoehm, defined(boehmgc), "--gc:boehm")
 bootSwitch(usedMarkAndSweep, defined(gcmarkandsweep), "--gc:markAndSweep")