diff options
| author | peter.ljunglof <peter.ljunglof@gu.se> | 2012-06-28 07:01:29 +0000 |
|---|---|---|
| committer | peter.ljunglof <peter.ljunglof@gu.se> | 2012-06-28 07:01:29 +0000 |
| commit | a162488b05c7c17940f170879990b7a003fa60f0 (patch) | |
| tree | 56c1eed368f803094f46e7c4067d689a7a3d397c | |
| parent | 7fb35be6e36f2812c709d45e0e13f055a4f3915f (diff) | |
Fixed minor bug in prolog export
| -rw-r--r-- | src/compiler/GF/Compile/PGFtoProlog.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/PGFtoProlog.hs b/src/compiler/GF/Compile/PGFtoProlog.hs index d24aa34c7..03a29871b 100644 --- a/src/compiler/GF/Compile/PGFtoProlog.hs +++ b/src/compiler/GF/Compile/PGFtoProlog.hs @@ -24,7 +24,7 @@ import Data.List (isPrefixOf, mapAccumL) grammar2prolog :: PGF -> String grammar2prolog pgf = ("%% This file was automatically generated by GF" +++++ - ":- style_check(-singleton)" +++++ + ":- style_check(-singleton)." +++++ plFacts wildCId "abstract" 1 "(?AbstractName)" [[plp name]] ++++ plFacts wildCId "concrete" 2 "(?AbstractName, ?ConcreteName)" |
