Created
April 4, 2013 17:13
-
-
Save joekarma/5312207 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in-package :cl-user) | |
(defun yaclml-defaults (thunk) | |
(eval `(let ((,(intern "*YACLML-INDENT*" :yaclml) nil)) | |
(funcall ,thunk)))) | |
(asdf:defsystem :foo | |
:serial t | |
:description "Foo is baz for bar." | |
:author "Joe Taylor" | |
:license "BSD" | |
:components ((:file "package") | |
(:file "foo")) | |
:depends-on (:yaclml) | |
:around-compile yaclml-defaults) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment