summaryrefslogtreecommitdiff
path: root/src/GF
diff options
context:
space:
mode:
authorpeb <unknown>2005-02-03 14:13:35 +0000
committerpeb <unknown>2005-02-03 14:13:35 +0000
commit4a5a48157fc85f7bb4deaf446140b1178a666f24 (patch)
tree077a81d46fa364559e6b6c1531057aff9b9517fa /src/GF
parenta7b25a9ca45c7ab7e4c64823698541122a0c865d (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF')
-rw-r--r--src/GF/Canon/GetGFC.hs3
-rw-r--r--src/GF/Compile/CheckGrammar.hs2
-rw-r--r--src/GF/Data/Operations.hs2
-rw-r--r--src/GF/GFModes.hs15
-rw-r--r--src/GF/Shell/CommandL.hs2
-rw-r--r--src/GF/Speech/SRG.hs3
6 files changed, 17 insertions, 10 deletions
diff --git a/src/GF/Canon/GetGFC.hs b/src/GF/Canon/GetGFC.hs
index 8bf2fab82..7da27bd90 100644
--- a/src/GF/Canon/GetGFC.hs
+++ b/src/GF/Canon/GetGFC.hs
@@ -18,5 +18,6 @@ getCanonModule file = do
getCanonGrammar :: FilePath -> IOE CanonGrammar
getCanonGrammar file = do
s <- ioeIO $ readFileIf file
- c <- ioeErr {- $ err2err -} $ pCanon $ myLexer s
+ -- c <- ioeErr $ err2err $ pCanon $ myLexer s
+ c <- ioeErr $ pCanon $ myLexer s
return $ canon2grammar c
diff --git a/src/GF/Compile/CheckGrammar.hs b/src/GF/Compile/CheckGrammar.hs
index a14b614b8..8d0d2de98 100644
--- a/src/GF/Compile/CheckGrammar.hs
+++ b/src/GF/Compile/CheckGrammar.hs
@@ -669,7 +669,7 @@ checkEqLType env t u trm = do
(RecType rs, RecType ts) -> -- and [alpha g a b && l == k --- too strong req
-- | ((l,a),(k,b)) <- zip rs ts]
- -- || -- if fails, try subtyping:
+ -- . || -- if fails, try subtyping:
all (\ (l,a) ->
any (\ (k,b) -> alpha g a b && l == k) ts) rs
diff --git a/src/GF/Data/Operations.hs b/src/GF/Data/Operations.hs
index 024318594..003f1746f 100644
--- a/src/GF/Data/Operations.hs
+++ b/src/GF/Data/Operations.hs
@@ -512,7 +512,7 @@ topoSort g = reverse $ tsort 0 [ffs | ffs@(f,_) <- g, inDeg f == 0] [] where
-- the generic fix point iterator
-iterFix :: Eq a => ([a] -> [a]) -> [a] -> [a]
+iterFix :: Eq a => ([a] -> [a]) -> [a] -> [a]
iterFix more start = iter start start
where
iter old new = if (null new')
diff --git a/src/GF/GFModes.hs b/src/GF/GFModes.hs
index f17c646eb..80af79d8d 100644
--- a/src/GF/GFModes.hs
+++ b/src/GF/GFModes.hs
@@ -1,11 +1,16 @@
----------------------------------------------------------------------
-- |
--- Module: GFModes
--- Responsible: Aarne Ranta (aarne@cs.chalmers.se)
--- Time-stamp: <2005-02-02, 15:24>
+-- Module : Main
+-- Maintainer : Aarne Ranta
+-- Stability : (stability)
+-- Portability : (portability)
--
--- (Description of the module)
-----------------------------------------------------------------------
+-- > CVS $Date: 2005/02/03 15:13:36 $
+-- > CVS $Author: peb $
+-- > CVS $Revision: 1.4 $
+--
+-- (Description)
+-----------------------------------------------------------------------------
module GFModes (gfInteract, gfBatch, batchCompile) where
diff --git a/src/GF/Shell/CommandL.hs b/src/GF/Shell/CommandL.hs
index 93214781e..a01e9cf08 100644
--- a/src/GF/Shell/CommandL.hs
+++ b/src/GF/Shell/CommandL.hs
@@ -75,7 +75,7 @@ pCommand = pCommandWords . words where
pCommandWords s = case s of
"n" : cat : _ -> CNewCat cat
"t" : ws -> CNewTree $ unwords ws
- "g" : ws -> CRefineWithTree $ unwords ws -- *g*ive
+ "g" : ws -> CRefineWithTree $ unwords ws -- example: *g*ive
"p" : ws -> CRefineParse $ unwords ws
"rc": i : _ -> CRefineWithClip (readIntArg i)
">" : i : _ -> CAhead $ readIntArg i
diff --git a/src/GF/Speech/SRG.hs b/src/GF/Speech/SRG.hs
index 0fc7349f3..f54d0f4a0 100644
--- a/src/GF/Speech/SRG.hs
+++ b/src/GF/Speech/SRG.hs
@@ -44,7 +44,8 @@ data SRG = SRG { grammarName :: String -- ^ grammar name
data SRGRule = SRGRule String String [SRGAlt] -- ^ SRG category name, original category name
-- and productions
type SRGAlt = [Symbol String Token]
-type CatName = (String,String) -- ^ SRG category name and original name
+type CatName = (String,String)
+-- ^ SRG category name and original name
type CatNames = FiniteMap String String