diff options
| author | krasimir <krasimir@chalmers.se> | 2009-01-20 14:33:42 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2009-01-20 14:33:42 +0000 |
| commit | e3892b82c0f1a73ce529dbfde2a2753475c94355 (patch) | |
| tree | d72d12352e2d5ebf323297cf66792c2042fa239b /src/GF/Grammar/Macros.hs | |
| parent | d6e917b5a1454bc75226d27ed71171b2617a4d46 (diff) | |
remove some dead types from GF.Grammar.Grammar
Diffstat (limited to 'src/GF/Grammar/Macros.hs')
| -rw-r--r-- | src/GF/Grammar/Macros.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Grammar/Macros.hs b/src/GF/Grammar/Macros.hs index 065dcef60..34c6302fd 100644 --- a/src/GF/Grammar/Macros.hs +++ b/src/GF/Grammar/Macros.hs @@ -405,7 +405,7 @@ freshMeta :: [MetaSymb] -> MetaSymb freshMeta ms = MetaSymb (minimum [n | n <- [0..length ms], notElem n (map metaSymbInt ms)]) -mkFreshMetasInTrm :: [MetaSymb] -> Trm -> Trm +mkFreshMetasInTrm :: [MetaSymb] -> Term -> Term mkFreshMetasInTrm metas = fst . rms minMeta where rms meta trm = case trm of Meta m -> (Meta (MetaSymb meta), meta + 1) |
