diff --git a/doc/bird.sgml b/doc/bird.sgml
index c5ebc142..c8bf273f 100644
--- a/doc/bird.sgml
+++ b/doc/bird.sgml
@@ -125,11 +125,11 @@ Anyway, it will probably work well also on older systems.
and Perl, installing BIRD should be as easy as:
- ./configure
- make
- make install
- vi /usr/local/etc/bird.conf
- bird
+./configure
+make
+make install
+vi /usr/local/etc/bird.conf
+bird
You can use ./configure --help to get a list of configure
@@ -1651,9 +1651,9 @@ in the foot).
a shell pattern (represented also as a string).
- This is a sequences of arbitrary bytes. There are no ways to modify
- bytestrings in filters. You can pass them between function, assign
- them to variables of type
- define one=1;
- define myas=64500;
- int set odds;
- pair set ps;
- ec set es;
+
+define one=1;
+define myas=64500;
- odds = [ one, (2+1), (6-one), (2*2*2-1), 9, 11 ];
- ps = [ (1,one+one), (3,4)..(4,8), (5,*), (6,3..6), (7..9,*) ];
- es = [ (rt, myas, 3*10), (rt, myas+one, 0..16*16*16-1), (ro, myas+2, *) ];
-
+int set odds = [ one, (2+1), (6-one), (2*2*2-1), 9, 11 ];
+pair set ps = [ (1,one+one), (3,4)..(4,8), (5,*), (6,3..6), (7..9,*) ];
+ec set es = [ (rt, myas, *), (rt, myas+2, 0..16*16*16-1) ];
+
Sets of prefixes are special: their literals does not allow ranges, but
allows prefix patterns that are written
@@ -1949,21 +1946,31 @@ in the foot).