diff options
Diffstat (limited to 'src/PGF.hs')
| -rw-r--r-- | src/PGF.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PGF.hs b/src/PGF.hs index 8add3d1d8..33c17b81b 100644 --- a/src/PGF.hs +++ b/src/PGF.hs @@ -172,7 +172,7 @@ startCat :: PGF -> Category --------------------------------------------------- readPGF f = do - s <- readFile f + s <- readFile f >>= return . decodeUTF8 -- pgf is in UTF8, internal in unicode g <- parseGrammar s return $! toPGF g |
