picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit eb5ef56a39f0d2a76325ef1a296ee486cff96ac9
parent 3bb1d73834f83107a38c6a15916b43d046bc9ec1
Author: Alexander Burger <abu@software-lab.de>
Date:   Tue, 15 Nov 2011 12:14:28 +0100

Minor doc fix
Diffstat:
Mdoc/refB.html | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/doc/refB.html b/doc/refB.html @@ -202,10 +202,11 @@ href="refU.html#use">use</a></code>. <dt><a name="bit?"><code>(bit? 'num ..) -> num | NIL</code></a> <dd>Returns the first <code>num</code> argument when all bits which are 1 in the -first argument are also 1 in all following arguments. When one of those -arguments evaluates to <code>NIL</code>, it is returned immediately. See also -<code><a href="ref_.html#&">&</a></code>, <code><a -href="ref_.html#|">|</a></code> and <code><a href="refX.html#x|">x|</a></code>. +first argument are also 1 in all following arguments, otherwise +<code>NIL</code>. When one of those arguments evaluates to <code>NIL</code>, it +is returned immediately. See also <code><a href="ref_.html#&">&</a></code>, +<code><a href="ref_.html#|">|</a></code> and <code><a +href="refX.html#x|">x|</a></code>. <pre><code> : (bit? 7 15 255)