summaryrefslogtreecommitdiff
path: root/src/PGF
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-08-19 07:40:45 +0000
committerbjorn <bjorn@bringert.net>2008-08-19 07:40:45 +0000
commitbc3281d5e788d8e9e01c8b671ba09bc57d7be0fe (patch)
treed40af3f93af59258e6031e86abac7397d5d07cc5 /src/PGF
parent55603b78f661027099fcde30799ef089a4794b41 (diff)
Fix order in the cncnames list in unionPGF. It was made in reverse.
Diffstat (limited to 'src/PGF')
-rw-r--r--src/PGF/Data.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PGF/Data.hs b/src/PGF/Data.hs
index 761097d7f..7f240dc4c 100644
--- a/src/PGF/Data.hs
+++ b/src/PGF/Data.hs
@@ -160,7 +160,7 @@ unionPGF one two = case absname one of
n | n == wildCId -> two -- extending empty grammar
| n == absname two -> one { -- extending grammar with same abstract
concretes = Map.union (concretes two) (concretes one),
- cncnames = union (cncnames two) (cncnames one)
+ cncnames = union (cncnames one) (cncnames two)
}
_ -> one -- abstracts don't match ---- print error msg