From 5c9917ff8d18ddaefd5a8bf4b223009747477fd8 Mon Sep 17 00:00:00 2001 From: bringert Date: Thu, 21 Apr 2005 15:21:02 +0000 Subject: Fixed module names and imports after giant file move. --- src/GF/Shell/PShell.hs | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/GF/Shell/PShell.hs') 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] -- cgit v1.2.3