commit 9f1da859cbfee22fa08aa0fcbcbb33de90114af2
parent b35edf11101adb6ecc3ac68b5bf7dd179209841b
Author: Alexander Burger <abu@software-lab.de>
Date: Thu, 21 Jul 2011 07:42:42 +0200
"see also" additions
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/doc/refO.html b/doc/refO.html
@@ -101,7 +101,8 @@ href="refO.html#one">one</a></code>.
<dt><a name="offset"><code>(offset 'lst1 'lst2) -> cnt | NIL</code></a>
<dd>Returns the <code>cnt</code> position of the tail list <code>lst1</code> in
<code>lst2</code>, or <code>NIL</code> if it is not found. See also <code><a
-href="refI.html#index">index</a></code>.
+href="refI.html#index">index</a></code> and <code><a
+href="refT.html#tail">tail</a></code>.
<pre><code>
: (offset '(c d e f) '(a b c d e f))
diff --git a/doc/refT.html b/doc/refT.html
@@ -141,6 +141,7 @@ the first argument is a <code>lst</code>, <code>tail</code> is a predicate
function returning that argument list if it is <code>equal</code> to the tail of
the second argument, and <code>NIL</code> otherwise. <code>(tail -2 Lst)</code>
is equivalent to <code>(nth Lst 3)</code>. See also <code><a
+href="refO.html#offset">offset</a></code>, <code><a
href="refH.html#head">head</a></code>, <code><a
href="refL.html#last">last</a></code> and <code><a
href="refS.html#stem">stem</a></code>.