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
a4f390d5
...
a4f390d50778f940c321e6b289260a5f8b1f7939
authored
2001-08-05 13:53:03 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Documented some obscure data structures.
1 parent
63da744b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
guimb/scm/sieve.scm
guimb/scm/sieve.scm
View file @
a4f390d
...
...
@@ -373,6 +373,7 @@
;;;; Comparators
;;; Each entry is (list COMP-NAME COMP-FUNCTION)
(
define
sieve-comparator-table
'
())
(
define
(
sieve-find-comparator
name
)
...
...
@@ -391,7 +392,13 @@
;;;; Command parsers
;;; Each entry is: (list NAME FUNCTION OPT-ARG-LIST REQ-ARG-LIST)
;;; OPT-ARG-LIST is a list of optional arguments (aka keywords, tags).
;;; It consists of conses: (cons TAG-NAME FLAG) where FLAG is #t
;;; if the tag requires an argument (e.g. :comparator <comp-name>),
;;; and is #f otherwise.
;;; REQ-ARG-LIST is a list of required (positional) arguments. It
;;; is a list of argument types.
(
define
sieve-test-table
'
())
(
define
(
sieve-find-test
name
)
...
...
@@ -650,6 +657,9 @@
(
require-semicolon
))
;;; Actions
;;; Each entry is: (list ACTION-NAME FUNCTION ARG-LIST)
;;; ARG-LIST is a list of argument types
(
define
sieve-action-table
'
())
(
define
(
sieve-find-action
name
)
...
...
Please
register
or
sign in
to post a comment