Commit 15461173 15461173015d6f39bb632f3348bab55c1d08f8f6 by Alain Magloire

The test_list of the grammar was wrong after reading more carefuly

the RFC.
1 parent fa5efdb3
1 2001-02-22 Alain Magloire
2
3 * sieve : New Directory.
4 * sieve/lex-sieve.lex : RFC3028 tokenizer.
5 * sieve/gram-sieve.y : RFC3028 grammar.
6
1 2001-02-20 Alain Magloire 7 2001-02-20 Alain Magloire
2 8
3 * mailbox/mailbox.c (mailbox_set_ticket mailbox_set_authority 9 * mailbox/mailbox.c (mailbox_set_ticket mailbox_set_authority
...@@ -102,7 +108,7 @@ ...@@ -102,7 +108,7 @@
102 to mailbox_unseen_count(). 108 to mailbox_unseen_count().
103 * include/mailutils/mailbox.h : updated for mailbox_unseen_count() 109 * include/mailutils/mailbox.h : updated for mailbox_unseen_count()
104 110
105 111
106 2001-01-25 Alain Magloire 112 2001-01-25 Alain Magloire
107 113
108 * frm/frm.c : Forget to add --summary option and fix return status. 114 * frm/frm.c : Forget to add --summary option and fix return status.
......
...@@ -45,7 +45,9 @@ reject : SIEVE_REJECT SIEVE_STRING ; ...@@ -45,7 +45,9 @@ reject : SIEVE_REJECT SIEVE_STRING ;
45 45
46 require : SIEVE_REQUIRE string_list ; 46 require : SIEVE_REQUIRE string_list ;
47 47
48 test_list : '(' test ')' | '(' test ',' test ')' | test; 48 test_list : '(' tests ')' ;
49
50 tests : test | test ',' tests ;
49 51
50 test : test_address | test_anyof | test_envelope | test_false | test_exists 52 test : test_address | test_anyof | test_envelope | test_false | test_exists
51 | test_header | test_not | test_size | test_true ; 53 | test_header | test_not | test_size | test_true ;
......