summaryrefslogtreecommitdiff
path: root/src-3.0/GF/System/Readline.hs
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@chalmers.se>2008-06-03 16:54:59 +0000
committerkr.angelov <kr.angelov@chalmers.se>2008-06-03 16:54:59 +0000
commitea145ddf5289c1f12d01a39ceb2935ddce8b31a0 (patch)
treec1ebce2e9aa46883d9471502a279239f1952c341 /src-3.0/GF/System/Readline.hs
parentbd1fd9569634240c26c9961298b7a4b503cc2c59 (diff)
add setCompletionFunction in GF.System.Readline
Diffstat (limited to 'src-3.0/GF/System/Readline.hs')
-rw-r--r--src-3.0/GF/System/Readline.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-3.0/GF/System/Readline.hs b/src-3.0/GF/System/Readline.hs
index c12493f98..94fca89bd 100644
--- a/src-3.0/GF/System/Readline.hs
+++ b/src-3.0/GF/System/Readline.hs
@@ -14,14 +14,14 @@
-- Uses the right readline library to read user input.
-----------------------------------------------------------------------------
-module GF.System.Readline (fetchCommand) where
+module GF.System.Readline (fetchCommand, setCompletionFunction) where
#ifdef USE_READLINE
-import GF.System.UseReadline (fetchCommand)
+import GF.System.UseReadline (fetchCommand, setCompletionFunction)
#else
-import GF.System.NoReadline (fetchCommand)
+import GF.System.NoReadline (fetchCommand, setCompletionFunction)
#endif