--- old-flexi-streams/doc/index.html	2009-01-13 17:01:52.000000000 +0200
+++ new-flexi-streams/doc/index.html	2009-01-13 17:01:52.000000000 +0200
@@ -710,7 +710,9 @@
 input flexi stream.  Initially it is <code>NIL</code>, but when it's
 an integer and the
 stream's <a href="#flexi-stream-position">position</a> has gone beyond
-this bound, the stream will behave as if no more input is available.
+this bound, the stream will behave as if no more input is available, and
+signal a <a href="#flexi-stream-bound-invalidation-condition"><code>FLEXI-STREAM-BOUND-INVALIDATION-CONDITION</code></a>
+condition.
 <p>
 Caveat: You can
 only <a
@@ -853,6 +855,26 @@
 If <code><i>condition</i></code> is of type <a href="#flexi-stream-element-type-error"><code>FLEXI-STREAM-ELEMENT-TYPE-ERROR</code></a>, this function will return the offending element type.
 </blockquote>
 
+<p><br>[Condition]
+<br><a class=none name="flexi-stream-bound-invalidation-condition"><b>flexi-stream-bound-invalidation-condition</b></a>
+
+<blockquote><br>
+Will get signaled when there is a
+non-NIL <a href="#flexi-stream-bound">bound</a> supplied with the stream, and
+the stream's position has gone beyond this bound.
+</blockquote>
+
+<p><br>[Reader]
+<br><a class=none name="flexi-stream-bound-invalidation-condition-request-size"><b>flexi-stream-bound-invalidation-condition-request-size</b> <i>condition</i> =&gt; <i>request-size</i></a>
+
+<blockquote><br>
+If <code><i>condition</i></code> is of
+type <a href="#flexi-stream-bound-invalidation-condition"><code>FLEXI-STREAM-BOUND-INVALIDATION-CONDITION</code></a>,
+this function will return the size requested to be read from the stream, which
+is exceeding previously supplied stream <a href="#flexi-stream-bound">bound</a>.
+</blockquote>
+
+
 <h4><a name="in-memory" class=none>In-memory streams</a></h4>
 
 The library also provides <em>in-memory</em> binary streams which are modeled after <a href="http://www.lispworks.com/documentation/HyperSpec/Body/t_stg_st.htm">string streams</a> and behave very similar only that they deal with <a href="#octet">octets</a> instead of characters and the underlying data structure is not a string but either a list or a vector.  These streams can obviously be used as the underlying streams for <a href="#flexi-streams">flexi streams</a>.

