diff --git a/cl-change-case.asd b/cl-change-case.asd index 6de9e6e..2e1e2e3 100644 --- a/cl-change-case.asd +++ b/cl-change-case.asd @@ -9,8 +9,7 @@ :license "LLGPL" :source-control (:git "git@github.com:rudolfochrist/cl-change-case.git") :bug-tracker "https://github.com/rudolfochrist/cl-change-case/issues" - :depends-on (:alexandria - :cl-ppcre + :depends-on (:cl-ppcre :cl-ppcre-unicode) :components ((:module "src" :components ((:file "cl-change-case")))) diff --git a/src/cl-change-case.lisp b/src/cl-change-case.lisp index efddf3e..16985d5 100644 --- a/src/cl-change-case.lisp +++ b/src/cl-change-case.lisp @@ -4,8 +4,6 @@ (defpackage #:cl-change-case (:nicknames :change-case) (:use :cl) - (:import-from :alexandria - #:define-constant) (:import-from :cl-ppcre #:regex-replace-all) (:export @@ -30,7 +28,7 @@ (in-package :cl-change-case) -(define-constant +empty-string+ "" :test #'string=) +(defvar +empty-string+ "") ;;; lower case