[cl-ppcre-cvs] CVS update: cl-ppcre/doc/index.html

Edi Weitz eweitz at common-lisp.net
Sat Apr 24 21:41:27 UTC 2004


Update of /project/cl-ppcre/cvsroot/cl-ppcre/doc
In directory common-lisp.net:/tmp/cvs-serv13499/doc

Modified Files:
	index.html 
Log Message:
oops - hyperdoc link for create-scanner was wrong

Date: Sat Apr 24 17:41:27 2004
Author: eweitz

Index: cl-ppcre/doc/index.html
diff -u cl-ppcre/doc/index.html:1.2 cl-ppcre/doc/index.html:1.3
--- cl-ppcre/doc/index.html:1.2	Thu Apr 22 14:53:15 2004
+++ cl-ppcre/doc/index.html	Sat Apr 24 17:41:27 2004
@@ -122,7 +122,7 @@
 <ol>
   <li><a href="#howto">How to use CL-PPCRE</a>
   <ol>
-    <li><a href="#create-scanner1"><code>create-scanner</code></a> (for Perl regex strings)
+    <li><a href="#create-scanner"><code>create-scanner</code></a> (for Perl regex strings)
     <li><a href="#create-scanner2"><code>create-scanner</code></a> (for parse trees)
     <li><a href="#scan"><code>scan</code></a>
     <li><a href="#scan-to-strings"><code>scan-to-strings</code></a>
@@ -181,7 +181,7 @@
 CL-PPCRE exports the following symbols:
 
 <p><br>[Function]
-<br><a class=none name="create-scanner1"><b>create-scanner</b> <i>string <tt>&key</tt> case-insensitive-mode multi-line-mode single-line-mode extended-mode destructive</i> => <i>scanner</i></a>
+<br><a class=none name="create-scanner"><b>create-scanner</b> <i>string <tt>&key</tt> case-insensitive-mode multi-line-mode single-line-mode extended-mode destructive</i> => <i>scanner</i></a>
 
 <blockquote><br> Accepts a string which is a regular expression in
 Perl syntax and returns a closure which will scan strings for this
@@ -241,7 +241,7 @@
 <br><a class=none name="create-scanner2"><b>create-scanner</b> <i>parse-tree <tt>&key</tt> case-insensitive-mode multi-line-mode single-line-mode extended-mode destructive</i> => <i>scanner</i></a>
 <blockquote><br>
 This is similar to <a
-href="#create-scanner1"><code>CREATE-SCANNER</code></a> above but
+href="#create-scanner"><code>CREATE-SCANNER</code></a> above but
 accepts a <em>parse tree</em> as its first argument. A parse tree is an S-expression
 conforming to the following syntax:
 
@@ -1052,7 +1052,7 @@
 <br><a class=none name="use-bmh-matchers"><b>*use-bmh-matchers*</b></a>
 
 <blockquote><br>Usually, the scanners created by <a
-href="#create-scanner1"><code>CREATE-SCANNER</code></a> (or
+href="#create-scanner"><code>CREATE-SCANNER</code></a> (or
 implicitely by other functions and macros) will use fast <a
 href="http://www-igm.univ-mlv.fr/~lecroq/string/node18.html">Boyer-Moore-Horspool
 matchers</a> to check for constant strings at the start or end of the
@@ -1210,7 +1210,7 @@
 convert a parse tree). This might be particularly useful when <a
 href="#*allow-quoting*"><code>*ALLOW-QUOTING*</code></a> is
 <em>true</em> because in this case the offending string might not be the one you gave to the <a
-href="#create-scanner1"><code>CREATE-SCANNER</code></a> function.
+href="#create-scanner"><code>CREATE-SCANNER</code></a> function.
 </blockquote>
 
 <p><br>[Function]
@@ -1927,7 +1927,7 @@
 her PowerBook to test CL-PPCRE with MCL and OpenMCL.
 
 <p>
-$Header: /project/cl-ppcre/cvsroot/cl-ppcre/doc/index.html,v 1.2 2004/04/22 18:53:15 eweitz Exp $
+$Header: /project/cl-ppcre/cvsroot/cl-ppcre/doc/index.html,v 1.3 2004/04/24 21:41:27 eweitz Exp $
 <p><a href="http://weitz.de/index.html">BACK TO MY HOMEPAGE</a>
 
 </body>





More information about the Cl-ppcre-cvs mailing list