From a090f2fe3d924f9f992cf80e837703ea56c181d6 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Fri, 18 Jul 2014 12:49:14 +0200 Subject: [PATCH] Fix CCL compat where nil can't be a plist key. --- src/parser.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.lisp b/src/parser.lisp index 585123e..265cbf3 100644 --- a/src/parser.lisp +++ b/src/parser.lisp @@ -2119,7 +2119,7 @@ load database (:lambda (command) (destructuring-bind (source target before commands finally) command (destructuring-bind (&key before commands finally) - (alexandria:alist-plist (list before commands finally)) + (alexandria:alist-plist (remove-if #'null (list before commands finally))) (list source target :before before :commands commands