summaryrefslogtreecommitdiffstats
path: root/filter/test.conf
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>2000-04-17 13:42:08 +0200
committerPavel Machek <pavel@ucw.cz>2000-04-17 13:42:08 +0200
commit4444ed2b26ae07dabbcc3e511798e2d7df3a2846 (patch)
tree9dd87654a6c26ff51038ee3e0c0a0ec56f8cc906 /filter/test.conf
parent991c36b509ad5bb96b4a28d0ec53813628e393a4 (diff)
downloadbird-4444ed2b26ae07dabbcc3e511798e2d7df3a2846.tar
bird-4444ed2b26ae07dabbcc3e511798e2d7df3a2846.zip
It is good idea to separate entries in list _somehow_. Adding/deleting
to community lists from filters now works.
Diffstat (limited to 'filter/test.conf')
-rw-r--r--filter/test.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/filter/test.conf b/filter/test.conf
index abe9d3f..f266828 100644
--- a/filter/test.conf
+++ b/filter/test.conf
@@ -50,7 +50,10 @@ clist l;
l = - empty -;
l = add( l, (1,2) );
- print "Community list ", l;
+ l = add( l, (2,3) );
+ print "Community list (1,2) (2,3) ", l;
+ l = delete( l, (2,3) );
+ print "Community list (1,2) ", l;
}
function startup()