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 8a6b93197c961c28b84c06647fbbd3925b33f722
parent 981c394e90c7015c5d1c8252993cc7b661636d27
Author: Commit-Bot <unknown>
Date:   Tue, 14 Dec 2010 18:18:57 +0000

Automatic commit from picoLisp.tgz, From: Tue, 14 Dec 2010 18:18:57 GMT
Diffstat:
Mdoc/refI.html | 3++-
Mdoc/refP.html | 3++-
Mdoc/refR.html | 8+++++---
3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/doc/refI.html b/doc/refI.html @@ -268,7 +268,8 @@ href="refS.html#scan">scan</a></code>. <dt><a name="insert"><code>(insert 'cnt 'lst 'any) -> lst</code></a> <dd>Inserts <code>any</code> into <code>lst</code> at position <code>cnt</code>. -See also <code><a href="refR.html#remove">remove</a></code>, <code><a +This is a non-destructive operation. See also <code><a +href="refR.html#remove">remove</a></code>, <code><a href="refP.html#place">place</a></code>, <code><a href="refA.html#append">append</a></code>, <code><a href="refD.html#delete">delete</a></code> and <code><a diff --git a/doc/refP.html b/doc/refP.html @@ -283,7 +283,8 @@ and <code><a href="refR.html#rpc">rpc</a></code>. <dt><a name="place"><code>(place 'cnt 'lst 'any) -> lst</code></a> <dd>Places <code>any</code> into <code>lst</code> at position <code>cnt</code>. -See also <code><a href="refI.html#insert">insert</a></code>, <code><a +This is a non-destructive operation. See also <code><a +href="refI.html#insert">insert</a></code>, <code><a href="refR.html#remove">remove</a></code>, <code><a href="refA.html#append">append</a></code>, <code><a href="refD.html#delete">delete</a></code> and <code><a diff --git a/doc/refR.html b/doc/refR.html @@ -450,8 +450,9 @@ href="refD.html#db/3">db/3</a></code>. </code></pre> <dt><a name="remove"><code>(remove 'cnt 'lst) -> lst</code></a> -<dd>Removes the element at position <code>cnt</code> from <code>lst</code>. See -also <code><a href="refI.html#insert">insert</a></code>, <code><a +<dd>Removes the element at position <code>cnt</code> from <code>lst</code>. This +is a non-destructive operation. See also <code><a +href="refI.html#insert">insert</a></code>, <code><a href="refP.html#place">place</a></code>, <code><a href="refA.html#append">append</a></code>, <code><a href="refD.html#delete">delete</a></code> and <code><a @@ -510,7 +511,8 @@ backtracking. See also <code><a href="refR.html#repeat">repeat</a></code> and <dt><a name="replace"><code>(replace 'lst 'any1 'any2 ..) -> lst</code></a> <dd>Replaces in <code>lst</code> all occurrences of <code>any1</code> with <code>any2</code>. For optional additional argument pairs, this process is -repeated. See also <code><a href="refA.html#append">append</a></code>, <code><a +repeated. This is a non-destructive operation. See also <code><a +href="refA.html#append">append</a></code>, <code><a href="refD.html#delete">delete</a></code>, <code><a href="refI.html#insert">insert</a></code>, <code><a href="refR.html#remove">remove</a></code> and <code><a