summaryrefslogtreecommitdiff
path: root/src/runtime/haskell/PGF/Data.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2010-01-05 07:05:41 +0000
committerkrasimir <krasimir@chalmers.se>2010-01-05 07:05:41 +0000
commit3ed19a482e796b0a62d234ec9ffd1981d5fee64e (patch)
tree93e3cf1a0643480f704bd5243585a090678b04b2 /src/runtime/haskell/PGF/Data.hs
parent354269e17c63d6e750fb5626adac43b92479506a (diff)
printnames are now kept as String instead of Term in PGF
Diffstat (limited to 'src/runtime/haskell/PGF/Data.hs')
-rw-r--r--src/runtime/haskell/PGF/Data.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF/Data.hs b/src/runtime/haskell/PGF/Data.hs
index 38027e96e..dcdf38dcb 100644
--- a/src/runtime/haskell/PGF/Data.hs
+++ b/src/runtime/haskell/PGF/Data.hs
@@ -35,7 +35,7 @@ data Concr = Concr {
opers :: Map.Map CId Term, -- oper generated by subex elim
lincats :: Map.Map CId Term, -- lin type of a cat
lindefs :: Map.Map CId Term, -- lin default of a cat
- printnames :: Map.Map CId Term, -- printname of a cat or a fun
+ printnames :: Map.Map CId String, -- printname of a cat or a fun
paramlincats :: Map.Map CId Term, -- lin type of cat, with printable param names
parser :: Maybe ParserInfo -- parser
}