summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-11-04 10:48:35 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-11-04 10:48:35 +0000
commit6f957e7012f9c3e5d077566e87a56a048348b1c7 (patch)
treedb5739b13e53a8058f544301d637e9044331a795
parent87fa9510e152b13b163950afd8061d1f6e452669 (diff)
downloadmailutils-6f957e7012f9c3e5d077566e87a56a048348b1c7.tar.gz
mailutils-6f957e7012f9c3e5d077566e87a56a048348b1c7.tar.bz2
(sizetag production): added missing semicolon, required by modern yaccs.
-rw-r--r--sieve/sieve-gram.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/sieve/sieve-gram.y b/sieve/sieve-gram.y
index 0d27021ab..9106c25a6 100644
--- a/sieve/sieve-gram.y
+++ b/sieve/sieve-gram.y
@@ -393,8 +393,9 @@ comptag: IS { $$ = IS; }
$$ = REGEX; }
;
-sizetag: OVER { $$ = OVER; }
+sizetag : OVER { $$ = OVER; }
| UNDER { $$ = UNDER; }
+ ;
testlist: '(' tests ')' { $$ = $2; }
;

Return to:

Send suggestions and report system problems to the System administrator.