Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
6f957e70
...
6f957e7012f9c3e5d077566e87a56a048348b1c7
authored
2002-11-04 10:48:35 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sizetag production): added missing semicolon, required by modern yaccs.
1 parent
87fa9510
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
sieve/sieve-gram.y
sieve/sieve-gram.y
View file @
6f957e7
...
...
@@ -393,8 +393,9 @@ comptag: IS { $$ = IS; }
$$ = REGEX; }
;
sizetag: OVER { $$ = OVER; }
sizetag
: OVER { $$ = OVER; }
| UNDER { $$ = UNDER; }
;
testlist: '(' tests ')' { $$ = $2; }
;
...
...
Please
register
or
sign in
to post a comment