Skip to content

Commit

Permalink
Merge pull request #1 from vindarel/master
Browse files Browse the repository at this point in the history
rm Alexandria dependency
  • Loading branch information
rudolfochrist authored Aug 27, 2019
2 parents 81ddc8a + 6f085e4 commit 5ceff2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions cl-change-case.asd
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
:license "LLGPL"
:source-control (:git "[email protected]: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"))))
Expand Down
4 changes: 1 addition & 3 deletions src/cl-change-case.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,7 +28,7 @@

(in-package :cl-change-case)

(define-constant +empty-string+ "" :test #'string=)
(defvar +empty-string+ "")


;;; lower case
Expand Down

0 comments on commit 5ceff2a

Please sign in to comment.