summaryrefslogtreecommitdiff
path: root/src-3.0/GF/System/Readline.hs
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@chalmers.se>2008-06-05 12:12:44 +0000
committerkr.angelov <kr.angelov@chalmers.se>2008-06-05 12:12:44 +0000
commitc4d298a347bace37c4fe06fa0e1a4668b92028ed (patch)
tree30066e202c04a25a8d651a7f817f4ffe62b9c7dd /src-3.0/GF/System/Readline.hs
parentabea46022ef35df493a8d78f56f5e9211150c54b (diff)
file name completion for command i
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 94fca89bd..db122c3e2 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, setCompletionFunction) where
+module GF.System.Readline (fetchCommand, setCompletionFunction, filenameCompletionFunction) where
#ifdef USE_READLINE
-import GF.System.UseReadline (fetchCommand, setCompletionFunction)
+import GF.System.UseReadline
#else
-import GF.System.NoReadline (fetchCommand, setCompletionFunction)
+import GF.System.NoReadline
#endif