terrence.x.brannon@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.