summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/GF/Interactive2.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/GF/Interactive2.hs b/src/compiler/GF/Interactive2.hs
index bfa7fd6b2..d023f47e4 100644
--- a/src/compiler/GF/Interactive2.hs
+++ b/src/compiler/GF/Interactive2.hs
@@ -166,6 +166,7 @@ execute1' s0 =
do execute . lines =<< lift (restricted (readFile w))
continue
where
+ execute :: [String] -> ShellM ()
execute [] = done
execute (line:lines) = whenM (execute1' line) (execute lines)