diff options
| author | bjorn <bjorn@bringert.net> | 2008-05-28 19:56:12 +0000 |
|---|---|---|
| committer | bjorn <bjorn@bringert.net> | 2008-05-28 19:56:12 +0000 |
| commit | dd8c3e91a0087589c8ed21ef3e70902400afa317 (patch) | |
| tree | c49941830b6a16b9840ef58e5d956d95b2245e62 | |
| parent | 2fcc77a884b5a440f2378fcc2e67bdcab812fcfb (diff) | |
Oops, inverted meaning of optBuildParser.
| -rw-r--r-- | src-3.0/GF/Compile.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-3.0/GF/Compile.hs b/src-3.0/GF/Compile.hs index 067e8743d..b7898a3ef 100644 --- a/src-3.0/GF/Compile.hs +++ b/src-3.0/GF/Compile.hs @@ -61,7 +61,7 @@ optimize opts = cse . suf buildParser :: Options -> GFCC -> GFCC buildParser opts = - if moduleFlag optBuildParser opts then id else addParsers + if moduleFlag optBuildParser opts then addParsers else id batchCompile :: Options -> [FilePath] -> IOE SourceGrammar batchCompile opts files = do |
