Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created April 4, 2013 17:13
Show Gist options
  • Save joekarma/5312207 to your computer and use it in GitHub Desktop.
Save joekarma/5312207 to your computer and use it in GitHub Desktop.
(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