losh.asd @ 8e950d7312af

Fix modify macros to comply with the spec

They happened to work in SBCL before, but according to the spec
`define-modify-macro` takes only a symbol as the function argument,
not a lambda or anything else.
author Steve Losh <steve@stevelosh.com>
date Sat, 20 Aug 2016 21:03:44 +0000
parents 5c813bb6d9fe
children 6aeaaa9a56bf
(asdf:defsystem #:losh
  :name "losh"
  :description "My personal utility belt library."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "0.0.1"

  :depends-on (#:iterate)

  :serial t
  :components
  ((:file "quickutils")
   (:file "package")
   (:file "losh")))