diff options
author | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-07 23:09:07 +0200 |
---|---|---|
committer | Gregor Kleen <pngwjpgh@users.noreply.github.com> | 2016-07-07 23:09:07 +0200 |
commit | e5e9eed0ebb7f63fb9cd111495220024c350879c (patch) | |
tree | b1f096157217831a52ba8791a909eb54c1e884bc /src | |
parent | 7c1e5aa5a44b6533223d354fd63024f4a16a0848 (diff) | |
download | 2017-01-16_17:13:37-e5e9eed0ebb7f63fb9cd111495220024c350879c.tar 2017-01-16_17:13:37-e5e9eed0ebb7f63fb9cd111495220024c350879c.tar.gz 2017-01-16_17:13:37-e5e9eed0ebb7f63fb9cd111495220024c350879c.tar.bz2 2017-01-16_17:13:37-e5e9eed0ebb7f63fb9cd111495220024c350879c.tar.xz 2017-01-16_17:13:37-e5e9eed0ebb7f63fb9cd111495220024c350879c.zip |
DonĀ“t break words on prime (due to spawn')
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index bddc85e..75f379b 100644 --- a/src/Main.hs +++ b/src/Main.hs | |||
@@ -102,7 +102,7 @@ main = do | |||
102 | , cmd "log" dumpLog "Print the combat log" | 102 | , cmd "log" dumpLog "Print the combat log" |
103 | , cmd "val" printVal "Find the distribution of a specific value of the current entities" | 103 | , cmd "val" printVal "Find the distribution of a specific value of the current entities" |
104 | ] | 104 | ] |
105 | , wordBreakChars = wordBreakChars initialShellDescription \\ [','] | 105 | , wordBreakChars = wordBreakChars initialShellDescription \\ [',', '\''] |
106 | } | 106 | } |
107 | void $ runShell description haskelineBackend (def :: GameState) | 107 | void $ runShell description haskelineBackend (def :: GameState) |
108 | 108 | ||