[cl-utilities-cvs] CVS cl-utilities/doc
pscott
pscott at common-lisp.net
Wed May 3 01:33:28 UTC 2006
Update of /project/cl-utilities/cvsroot/cl-utilities/doc
In directory clnet:/tmp/cvs-serv22428/doc
Modified Files:
collecting.html compose.html extremum.html once-only.html
rotate-byte.html split-sequence.html with-unique-names.html
Log Message:
Fixed broken links in with-unique-names.html and changed links to the
old HyperSpec at lisp.org to the newer one at lispworks.com. Thanks to
Martin Simmons for pointing this out.
--- /project/cl-utilities/cvsroot/cl-utilities/doc/collecting.html 2005/12/14 21:15:16 1.2
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/collecting.html 2006/05/03 01:33:28 1.3
@@ -18,7 +18,7 @@
<p><b>Arguments and Values:</b><p>
<p>
<i>forms</i>---an <a
-href="http://www.lisp.org/HyperSpec/Body/glo_i.html#implicit_progn">implicit
+href="http://www.lispworks.com/documentation/HyperSpec/Body/glo_i.html#implicit_progn">implicit
progn</a>.
<p><i>collector</i>---a symbol which will have a collection function bound to it.
--- /project/cl-utilities/cvsroot/cl-utilities/doc/compose.html 2005/12/14 21:15:16 1.1
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/compose.html 2006/05/03 01:33:28 1.2
@@ -14,7 +14,7 @@
<p><p><b>Arguments and Values:</b></p>
-<p><p><i>function</i>---a <i><a href="http://www.lisp.org/HyperSpec/Body/glo_f.html#function_designator">function designator</a></i>.</p>
+<p><p><i>function</i>---a <i><a href="http://www.lispworks.com/documentation/HyperSpec/Body/glo_f.html#function_designator">function designator</a></i>.</p>
<p><i>composite-function</i>---a <i>function</i>.
--- /project/cl-utilities/cvsroot/cl-utilities/doc/extremum.html 2005/12/14 21:15:18 1.2
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/extremum.html 2006/05/03 01:33:28 1.3
@@ -31,13 +31,13 @@
<i>morally-smallest-element</i>---the element of <i>sequence</i> that
would appear first if the sequence were ordered according to <a
class="hyperspec" href ="
-http://www.lisp.org/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
using <i>predicate</i> and <i>key</i>
<p><i>morally-smallest-elements</i>---the identical elements of
<i>sequence</i> that would appear first if the sequence were ordered
according to <a class="hyperspec" href ="
-http://www.lisp.org/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
using <i>predicate</i> and <i>key</i>. If <i>predicate</i> states that
neither of two objects is before the other, they are considered
identical.
@@ -47,7 +47,7 @@
<i>n-smallest-elements</i>---the <i>n</i> elements of <i>sequence</i> that
would appear first if the sequence were ordered according to <a
class="hyperspec" href ="
-http://www.lisp.org/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
using <i>predicate</i> and <i>key</i>
<p>
@@ -57,7 +57,7 @@
appear first if the subsequence of <i>sequence</i> specified by
<i>start</i> and <i>end</i> were ordered according to <a
class="hyperspec" href ="
-http://www.lisp.org/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
using <i>predicate</i> and <i>key</i>.
@@ -96,7 +96,7 @@
<p>The return value of <tt>(extremum predicate sequence :key key)</tt>
can be defined as <tt>(elt (<a class="hyperspec" href ="
-http://www.lisp.org/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_sortcm_stable-sort.html"><b>sort</b></a>
predicate (subseq sequence start end) :key key) 0)</tt> except when
<i>sequence</i> is empty (see Exceptional Situations), but may use
faster (less asymptotically complex) algorithms to find this answer.
--- /project/cl-utilities/cvsroot/cl-utilities/doc/once-only.html 2005/12/14 21:15:18 1.1
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/once-only.html 2006/05/03 01:33:28 1.2
@@ -15,9 +15,9 @@
<p>
<p><b>Arguments and Values:</b><p>
<p>
-<i>name</i>---a <a href="http://www.lisp.org/HyperSpec/Body/glo_s.html#symbol"><i>symbol</i></a></a>. <p>
+<i>name</i>---a <a href="http://www.lispworks.com/documentation/HyperSpec/Body/glo_s.html#symbol"><i>symbol</i></a></a>. <p>
-<i>form</i>---a <a href="http://www.lisp.org/HyperSpec/Body/glo_f.html#form"><i>form</i></a></a>. <p>
+<i>form</i>---a <a href="http://www.lispworks.com/documentation/HyperSpec/Body/glo_f.html#form"><i>form</i></a></a>. <p>
<p>
<p><b>Description:</b><p>
--- /project/cl-utilities/cvsroot/cl-utilities/doc/rotate-byte.html 2005/12/14 21:15:18 1.1
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/rotate-byte.html 2006/05/03 01:33:28 1.2
@@ -46,7 +46,12 @@
<p><p><b>See Also:</b></p>
-<p><a class="hyperspec" href =" http://www.lisp.org/HyperSpec/Body/fun_bytecm_by_yte-position.html"><b>byte</b></a>, <a class="hyperspec" href =" http://www.lisp.org/HyperSpec/Body/fun_dpb.html"><b>dpb</b></a>, <a class="hyperspec" href =" http://www.lisp.org/HyperSpec/Body/acc_ldb.html"><b>ldb</b></a>
+<p><a class="hyperspec" href ="
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_bytecm_by_yte-position.html"><b>byte</b></a>,
+<a class="hyperspec" href ="
+http://www.lispworks.com/documentation/HyperSpec/Body/fun_dpb.html"><b>dpb</b></a>, <a
+class="hyperspec" href ="
+http://www.lispworks.com/documentation/HyperSpec/Body/acc_ldb.html"><b>ldb</b></a>
<p><b>Implementation notes</b>
--- /project/cl-utilities/cvsroot/cl-utilities/doc/split-sequence.html 2005/12/14 21:15:18 1.2
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/split-sequence.html 2006/05/03 01:33:28 1.3
@@ -41,7 +41,7 @@
<p><p>Splits <i>sequence</i> into a list of subsequences delimited by objects <i>satisfying the test</i>.
-<p><i>List</i> is a list of sequences of the same kind as <i>sequence</i> that has elements consisting of subsequences of <i>sequence</i> that were delimited in the argument by elements <i>satisfying the test</i>. <i>Index</i> is an index into <i>sequence</i> indicating the unprocessed region, suitable as an argument to <a class="hyperspec" href =" http://www.lisp.org/HyperSpec/Body/acc_subseq.html"><b>subseq</b></a> to continue processing in the same manner if desired.
+<p><i>List</i> is a list of sequences of the same kind as <i>sequence</i> that has elements consisting of subsequences of <i>sequence</i> that were delimited in the argument by elements <i>satisfying the test</i>. <i>Index</i> is an index into <i>sequence</i> indicating the unprocessed region, suitable as an argument to <a class="hyperspec" href =" http://www.lispworks.com/documentation/HyperSpec/Body/acc_subseq.html"><b>subseq</b></a> to continue processing in the same manner if desired.
<p>The <i>count</i> argument, if supplied, limits the number of subsequences in the first return value; if more than <i>count</i> delimited subsequences exist in <i>sequence</i>, the <i>count</i> leftmost delimited subsequences will be in order in the first return value, and the second return value will be the index into <i>sequence</i> at which processing stopped.
--- /project/cl-utilities/cvsroot/cl-utilities/doc/with-unique-names.html 2005/12/14 21:15:18 1.1
+++ /project/cl-utilities/cvsroot/cl-utilities/doc/with-unique-names.html 2006/05/03 01:33:28 1.2
@@ -22,7 +22,7 @@
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_e.htm#evaluate"><i>evaluate</i></a>d. The default is <i>var</i>.</p>
<p><i>declaration</i>---a <a href ="
- http://www.lisp.org/HyperSpec/Body/sym_declare.html"><b>declare</b></a>
+ http://www.lispworks.com/documentation/HyperSpec/Body/sym_declare.html"><b>declare</b></a>
<a
HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_e.htm#expression"><i>expression</i></a>;
not <a
@@ -32,14 +32,14 @@
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_r.htm#return"><i>return</i></a>ed by the <i>form</i>s.</p>
</p><p><b>Description:</b></p><p> <a
- HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_E.htm#Execute"><i>Execute</i></a>s
+ HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_e.htm#Execute"><i>Execute</i></a>s
a series of <a
HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_f.htm#form"><i>form</i></a>s
with each
<i>var</i> <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_b.htm#bound"><i>bound</i></a> to a <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_f.htm#fresh"><i>fresh</i></a>,
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_u.htm#uninterned"><i>uninterned</i></a> <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#symbol"><i>symbol</i></a>. The
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_u.htm#uninterned"><i>uninterned</i></a> <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#symbol"><i>symbol</i></a> is created as if by
- a <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_c.htm#call"><i>call</i></a> to <a href =" http://www.lisp.org/HyperSpec/Body/fun_gensym.html"><b>gensym</b></a> with the
+ a <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_c.htm#call"><i>call</i></a> to <a href =" http://www.lispworks.com/documentation/HyperSpec/Body/fun_gensym.html"><b>gensym</b></a> with the
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#string"><i>string</i></a> denoted by <i>prefix</i>---or, if
<i>prefix</i> is not supplied, the <a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#string"><i>string</i></a>
@@ -51,7 +51,7 @@
created are <a
HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_l.htm#lexical"><i>lexical</i></a>
unless <a
- HREF="http://www.lispworks.com/documentation/HyperSpec/Body/dec_special.htm#special"><b>special</b></a>
+ HREF="http://www.lispworks.com/documentation/HyperSpec/Body/dec_specia.htm#special"><b>special</b></a>
<a HREF="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_d.htm#declaration"><i>declaration</i></a>s are specified.
<p></p>
@@ -72,15 +72,15 @@
</pre>
</p><p><b>Side Effects:</b></p><p>
- Might increment <a href =" http://www.lisp.org/HyperSpec/Body/var_stgensym-counterst.html"><b>*gensym-counter*</b></a> once for each
+ Might increment <a href =" http://www.lispworks.com/documentation/HyperSpec/Body/var_stgensym-counterst.html"><b>*gensym-counter*</b></a> once for each
<i>var</i>.
</p><p><b>Affected by:</b></p><p> <a href ="
- http://www.lisp.org/HyperSpec/Body/var_stgensym-counterst.html"><b>*gensym-counter*</b></a>
+ http://www.lispworks.com/documentation/HyperSpec/Body/var_stgensym-counterst.html"><b>*gensym-counter*</b></a>
</p><p><b>Exceptional Situations:</b></p><p>
None.
</p><p><b>See Also:</b></p><p>
-<a href =" http://www.lisp.org/HyperSpec/Body/fun_gensym.html"><b>gensym</b></a>, <a href =" http://www.lisp.org/HyperSpec/Body/speope_letcm_letst.html"><b>let</b></a></b>
+<a href =" http://www.lispworks.com/documentation/HyperSpec/Body/fun_gensym.html"><b>gensym</b></a>, <a href =" http://www.lispworks.com/documentation/HyperSpec/Body/speope_letcm_letst.html"><b>let</b></a></b>
</p>
</p>
More information about the Cl-utilities-cvs
mailing list