Skip to content

Commit

Permalink
Supporting updates for REWRITE-TEMPLATES.
Browse files Browse the repository at this point in the history
  • Loading branch information
xach committed Mar 13, 2012
1 parent 2cd0afa commit 2ee1574
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
13 changes: 12 additions & 1 deletion package.lisp
Expand Up @@ -6,7 +6,18 @@
(:export #:make-project
#:*after-make-project-hooks*
#:*author*
#:*license*))
#:*license*)
(:shadowing-import-from #:html-template
#:*warn-on-creation*
#:fill-and-print-template
#:*template-start-marker*
#:*template-end-marker*)
(:shadowing-import-from #:cl-fad
#:pathname-as-directory
#:walk-directory))

(in-package #:quickproject)

(macrolet ((foo ()
bar))
(foo))
5 changes: 3 additions & 2 deletions quickproject.asd
Expand Up @@ -2,8 +2,9 @@

(asdf:defsystem #:quickproject
:description "Creates the skeleton of a new Common Lisp project"
:version "1.1.2"
:depends-on (#:cl-fad)
:version "1.1.2"
:depends-on (#:cl-fad
#:html-template)
:serial t
:components ((:file "package")
(:file "quickproject")))

0 comments on commit 2ee1574

Please sign in to comment.