diff options
| author | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2005-04-21 15:21:02 +0000 |
| commit | 5c9917ff8d18ddaefd5a8bf4b223009747477fd8 (patch) | |
| tree | 46345cb91a8e0fa626a0bf4c03af8f8ef4cad09f /src/GF/Shell/PShell.hs | |
| parent | 3433c978480f112bf04a895d03ec15529796ecce (diff) | |
Fixed module names and imports after giant file move.
Diffstat (limited to 'src/GF/Shell/PShell.hs')
| -rw-r--r-- | src/GF/Shell/PShell.hs | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/GF/Shell/PShell.hs b/src/GF/Shell/PShell.hs index bb375d00d..b84e3c4f3 100644 --- a/src/GF/Shell/PShell.hs +++ b/src/GF/Shell/PShell.hs @@ -5,27 +5,27 @@ -- Stability : (stable) -- Portability : (portable) -- --- > CVS $Date: 2005/02/24 11:46:37 $ --- > CVS $Author: peb $ --- > CVS $Revision: 1.18 $ +-- > CVS $Date: 2005/04/21 16:23:22 $ +-- > CVS $Author: bringert $ +-- > CVS $Revision: 1.19 $ -- -- parsing GF shell commands. AR 11\/11\/2001 ----------------------------------------------------------------------------- -module PShell where +module GF.Shell.PShell where -import Operations -import UseIO -import ShellState -import ShellCommands -import Shell -import Option -import PGrammar (pzIdent, pTrm) --- (string2formsAndTerm) -import API +import GF.Data.Operations +import GF.Infra.UseIO +import GF.Compile.ShellState +import GF.Shell.ShellCommands +import GF.Shell +import GF.Infra.Option +import GF.Compile.PGrammar (pzIdent, pTrm) --- (string2formsAndTerm) +import GF.API import Arch(fetchCommand) -import Char (isDigit) -import IO +import Data.Char (isDigit) +import System.IO.Error -- parsing GF shell commands. AR 11/11/2001 @@ -37,7 +37,7 @@ getCommandLines = do getCommandLinesBatch :: IO (String,[CommandLine]) getCommandLinesBatch = do - s <- catch getLine (\e -> if IO.isEOFError e then return "q" else ioError e) + s <- catch getLine (\e -> if isEOFError e then return "q" else ioError e) return $ (s,pCommandLines s) pCommandLines :: String -> [CommandLine] |
