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 04975e995334f5dc515877727562da3f574094ee
parent b7db5d518937efe578ba244a8d3205d2ade0f240
Author: Commit-Bot <unknown>
Date:   Tue, 30 Nov 2010 09:30:02 +0000

Automatic commit from picoLisp.tgz, From: Tue, 30 Nov 2010 09:30:02 GMT
Diffstat:
Mdoc/refA.html | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/refA.html b/doc/refA.html @@ -24,9 +24,9 @@ href="refA.html#accept">accept</a></code>. <dt><a name="adr"><code>(adr 'var) -> num</code></a> <dt><code>(adr 'num) -> var</code> <dd>Converts, in the first form, a variable <code>var</code> (a symbol or a -cell) into <code>num</code> (a pointer). A symbol will result in a negative -number, and a cell in a positive number. The second form converts a pointer back -into the original <code>var</code>. +cell) into <code>num</code> (actually an encoded pointer). A symbol will result +in a negative number, and a cell in a positive number. The second form converts +a pointer back into the original <code>var</code>. <pre><code> : (setq X (box 7))