[bknr-cvs] edi changed trunk/thirdparty/cl-ppcre/
BKNR Commits
bknr at bknr.net
Wed Oct 20 12:05:41 UTC 2010
Revision: 4620
Author: edi
URL: http://bknr.net/trac/changeset/4620
Typo
U trunk/thirdparty/cl-ppcre/api.lisp
U trunk/thirdparty/cl-ppcre/doc/index.html
Modified: trunk/thirdparty/cl-ppcre/api.lisp
===================================================================
--- trunk/thirdparty/cl-ppcre/api.lisp 2010-10-12 21:48:22 UTC (rev 4619)
+++ trunk/thirdparty/cl-ppcre/api.lisp 2010-10-20 12:05:40 UTC (rev 4620)
@@ -1224,8 +1224,8 @@
(let* ((*use-bmh-matchers* nil)
(comment-scanner (create-scanner "(?s)\\(\\?#.*?\\)"))
(extended-comment-scanner (create-scanner "(?m:#.*?$)|(?s:\\(\\?#.*?\\))"))
- (quote-token-scanner "\\\\[QE]")
- (quote-token-replace-scanner "\\\\([QE])"))
+ (quote-token-scanner (create-scanner "\\\\[QE]"))
+ (quote-token-replace-scanner (create-scanner "\\\\([QE])")))
(defun clean-comments (string &optional extended-mode)
"Clean \(?#...) comments within STRING for quoting, i.e. convert
\\Q to Q and \\E to E. If EXTENDED-MODE is true, also clean
Modified: trunk/thirdparty/cl-ppcre/doc/index.html
===================================================================
--- trunk/thirdparty/cl-ppcre/doc/index.html 2010-10-12 21:48:22 UTC (rev 4619)
+++ trunk/thirdparty/cl-ppcre/doc/index.html 2010-10-20 12:05:40 UTC (rev 4620)
@@ -2052,7 +2052,7 @@
<ul>
<li>A lot of hackers (especially users of Perl and other scripting
languages) think that regular expressions are the greatest thing
- since slice bread and use it for almost everything. That is just
+ since sliced bread and use it for almost everything. That is just
plain wrong. Other hackers (especially Lispers) tend to think that
regular expressions are the work of the devil and try to avoid them
at all cost. That's also wrong. Regular expressions are a handy
More information about the Bknr-cvs
mailing list