X-Git-Url: http://git.megacz.com/?p=wix.git;a=blobdiff_plain;f=src%2FDoc.lhs;h=ab1418fc76a650a9cb3e6abd3b7565c50fe256ad;hp=a36d367c2de733a7724748715f1f9f6d6b93a943;hb=89d45d9a43527a84134ad2fa133d86c3cd7eec07;hpb=3c96b1336f651fa3689e975f4793b55c43591d21 diff --git a/src/Doc.lhs b/src/Doc.lhs index a36d367..ab1418f 100644 --- a/src/Doc.lhs +++ b/src/Doc.lhs @@ -4,7 +4,7 @@ where import Numeric import Data.Bits import Data.Char -import SBP +import Edu_Berkeley_Sbp_Haskell_SBP import Util import FromTree import qualified Text.PrettyPrint.Leijen as PP @@ -118,7 +118,7 @@ unindent (Tree "I" indent _) v = unindent' ((length indent)+1) v instance FromTree [Text] where fromTree (Tree "Word" chars _) = [Chars $ concatMap fromTree chars] - fromTree (Tree "Ordinal" x _) = [Command "ordinal" $ [Chars (show x)]] + fromTree (Tree "Ordinal" x _) = [Command "ordinal" $ [Chars $ concatMap show x]] fromTree (Tree "Fraction" [n,d] _) = [Command "fraction" $ [(Chars (show n)), (Chars (show d))]] fromTree (Tree "WS" _ _) = [WS] fromTree (Tree "Quotes" [x] _) = [Quotes $ fromTree x]