summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2009-03-05 08:25:29 +0000
committerkrasimir <krasimir@chalmers.se>2009-03-05 08:25:29 +0000
commitbc77eef267b758261e676574548858059bef1f4d (patch)
tree98d52f28940f6a8092a1a4ef0a1b7bd8214210f2
parentbec544c0ef3c33123d70aa91c32a1f6392df7179 (diff)
fix the compilation of ExtraBul.gf
-rw-r--r--next-lib/src/bulgarian/ExtraBul.gf9
1 files changed, 6 insertions, 3 deletions
diff --git a/next-lib/src/bulgarian/ExtraBul.gf b/next-lib/src/bulgarian/ExtraBul.gf
index 1e15a19de..3b2fef62c 100644
--- a/next-lib/src/bulgarian/ExtraBul.gf
+++ b/next-lib/src/bulgarian/ExtraBul.gf
@@ -5,17 +5,20 @@ concrete ExtraBul of ExtraBulAbs = CatBul **
lin
PossIndefPron p = {
- s = \\aform => p.gen ! (indefAForm ! aform) ;
+ s = \\_,aform => p.gen ! (indefAForm ! aform) ;
+ nonEmpty = True;
spec = Indef
} ;
ReflQuant = {
- s = \\aform => reflPron ! aform ;
+ s = \\_,aform => reflPron ! aform ;
+ nonEmpty = True;
spec = Indef
} ;
ReflIndefQuant = {
- s = \\aform => reflPron ! (indefAForm ! aform) ;
+ s = \\_,aform => reflPron ! (indefAForm ! aform) ;
+ nonEmpty = True;
spec = Indef
} ;