[cl-ppcre-devel] using cl-ppcre functions without package prefixes

Volkan YAZICI yazicivo at ttmail.com
Fri Jan 4 22:31:06 UTC 2008


terrence.x.brannon at jpmchase.com writes:
> Hello, I know this is more of just a pure Lisp question, but i
> cannot figure out how to get my Lisp program to use cl-ppcre without
> having to prefix the function calls with 'cl-ppcre' My application
> is using ASDF to define and load itself:
>
> (asdf:defsystem bank-match
>     :description "Approximate bank matching"
>     :author "Terrence M. Brannon"
>     :maintainer "Terrence M. Brannon"
>     :licence "Artistic"
>     :version "1.0"
>     :serial t
>     :depends-on ("cl-ppcre")
> ...)

Append :cl-ppcre into the :use list of your DEFPACKAGE line. For
instance:

  (defpackage :test
    (:use :cl :cl-ppcre))


Regards.



More information about the Cl-ppcre-devel mailing list