# HG changeset patch # User Steve Losh # Date 1460641261 0 # Node ID 9376531b5089d1ac442197f100865f968ad66163 # Parent d16b5b36039846f8623a081bdcddfd86bd847577 Fix macro quoting diff -r d16b5b360398 -r 9376531b5089 src/utils.lisp --- a/src/utils.lisp Thu Apr 14 13:32:31 2016 +0000 +++ b/src/utils.lisp Thu Apr 14 13:41:01 2016 +0000 @@ -2,7 +2,7 @@ (defmacro push-if-new (thing place &environment env - &key key (test 'eql)) + &key key (test '#'eql)) "Push `thing` into the list at `place` if it's not already there. Returns whether `thing` was actually pushed. This function is basically