summary refs log tree commit diff stats
path: root/koch.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 /koch.nim
parent87f65f5e72148d6b44e09cfd4834c9366bfacd4c (diff)
downloadNim-aa8b470cf6101b1394711866b0ee4c4ad8363104.tar.gz
use linenoise instead of GNU readline
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim
index 83f363b1a..8992271bf 100644
--- a/koch.nim
+++ b/koch.nim
@@ -57,7 +57,7 @@ Possible Commands:
 Boot options:
   -d:release               produce a release version of the compiler
   -d:tinyc                 include the Tiny C backend (not supported on Windows)
-  -d:useGnuReadline        use the GNU readline library for interactive mode
+  -d:useLinenoise          use the linenoise library for interactive mode
                            (not needed on Windows)
   -d:nativeStacktrace      use native stack traces (only for Mac OS X or Linux)
   -d:noCaas                build Nim without CAAS support
@@ -333,7 +333,7 @@ proc tests(args: string) =
   # we compile the tester with taintMode:on to have a basic
   # taint mode test :-)
   exec "nim cc --taintMode:on tests/testament/tester"
-  # Since tests take a long time (on my machine), and we want to defy Murhpys 
+  # Since tests take a long time (on my machine), and we want to defy Murhpys
   # law - lets make sure the compiler really is freshly compiled!
   exec "nim c --lib:lib -d:release --opt:speed compiler/nim.nim"
   let tester = quoteShell(getCurrentDir() / "tests/testament/tester".exe)
9-06-27 10:33:11 -0700 committer Drew DeVault <sir@cmpwn.com> 2019-06-29 14:24:19 -0400 Implement basic tab completion support' href='/akspecs/aerc/commit/commands/account/next-result.go?h=0.6.0&id=2a0961701c4cabecc53d134ed1782e5612e64580'>2a09617 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50