| 1 |
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*- |
|---|
| 2 |
;;; $Header: /usr/local/cvsrep/cl-ppcre/packages.lisp,v 1.38 2008/07/22 23:54:59 edi Exp $ |
|---|
| 3 |
|
|---|
| 4 |
;;; Copyright (c) 2002-2008, Dr. Edmund Weitz. All rights reserved. |
|---|
| 5 |
|
|---|
| 6 |
;;; Redistribution and use in source and binary forms, with or without |
|---|
| 7 |
;;; modification, are permitted provided that the following conditions |
|---|
| 8 |
;;; are met: |
|---|
| 9 |
|
|---|
| 10 |
;;; * Redistributions of source code must retain the above copyright |
|---|
| 11 |
;;; notice, this list of conditions and the following disclaimer. |
|---|
| 12 |
|
|---|
| 13 |
;;; * Redistributions in binary form must reproduce the above |
|---|
| 14 |
;;; copyright notice, this list of conditions and the following |
|---|
| 15 |
;;; disclaimer in the documentation and/or other materials |
|---|
| 16 |
;;; provided with the distribution. |
|---|
| 17 |
|
|---|
| 18 |
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED |
|---|
| 19 |
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
|---|
| 20 |
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|---|
| 21 |
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
|---|
| 22 |
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
|---|
| 23 |
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
|---|
| 24 |
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|---|
| 25 |
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|---|
| 26 |
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|---|
| 27 |
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|---|
| 28 |
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
|
|---|
| 30 |
(in-package :cl-user) |
|---|
| 31 |
|
|---|
| 32 |
(defpackage :cl-ppcre |
|---|
| 33 |
(:nicknames :ppcre) |
|---|
| 34 |
#+:genera |
|---|
| 35 |
(:shadowing-import-from :common-lisp :lambda :simple-string :string) |
|---|
| 36 |
(:use #-:genera :cl #+:genera :future-common-lisp) |
|---|
| 37 |
(:shadow :digit-char-p :defconstant) |
|---|
| 38 |
(:export :parse-string |
|---|
| 39 |
:create-scanner |
|---|
| 40 |
:create-optimized-test-function |
|---|
| 41 |
:parse-tree-synonym |
|---|
| 42 |
:define-parse-tree-synonym |
|---|
| 43 |
:scan |
|---|
| 44 |
:scan-to-strings |
|---|
| 45 |
:do-scans |
|---|
| 46 |
:do-matches |
|---|
| 47 |
:do-matches-as-strings |
|---|
| 48 |
:all-matches |
|---|
| 49 |
:all-matches-as-strings |
|---|
| 50 |
:split |
|---|
| 51 |
:regex-replace |
|---|
| 52 |
:regex-replace-all |
|---|
| 53 |
:regex-apropos |
|---|
| 54 |
:regex-apropos-list |
|---|
| 55 |
:quote-meta-chars |
|---|
| 56 |
:*regex-char-code-limit* |
|---|
| 57 |
:*use-bmh-matchers* |
|---|
| 58 |
:*allow-quoting* |
|---|
| 59 |
:*allow-named-registers* |
|---|
| 60 |
:*optimize-char-classes* |
|---|
| 61 |
:*property-resolver* |
|---|
| 62 |
:ppcre-error |
|---|
| 63 |
:ppcre-invocation-error |
|---|
| 64 |
:ppcre-syntax-error |
|---|
| 65 |
:ppcre-syntax-error-string |
|---|
| 66 |
:ppcre-syntax-error-pos |
|---|
| 67 |
:register-groups-bind |
|---|
| 68 |
:do-register-groups)) |
|---|