bug fix in Predef.toStr compilation

This commit is contained in:
aarne
2006-05-21 11:38:00 +00:00
parent db4e3fee20
commit 1112dbed7e

View File

@@ -138,6 +138,7 @@ trm2str t = case t of
V _ (s:_) -> trm2str s
C _ _ -> return $ t
K _ -> return $ t
S c _ -> trm2str c
Empty -> return $ t
_ -> prtBad "cannot get Str from term" t