1
0
forked from GitHub/gf-core

add setCompletionFunction in GF.System.Readline

This commit is contained in:
kr.angelov
2008-06-03 16:54:59 +00:00
parent cdb1eaf58f
commit 17e349abd3
3 changed files with 18 additions and 6 deletions

View File

@@ -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