aboutsummaryrefslogtreecommitdiff
path: root/src/property.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-18 09:46:08 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-18 09:55:57 -0700
commit6456fba9f56f2cc1f37043349b1b5be512e3220f (patch)
treede698de2a5c2ab5155e166e3aa7952a073d9dab0 /src/property.lisp
parent20de275d39fdf56e14078fb8a816f96f2314562f (diff)
downloadconsfigurator-6456fba9f56f2cc1f37043349b1b5be512e3220f.tar.gz
fix call to STRIP-DECLARATIONS
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property.lisp')
-rw-r--r--src/property.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/property.lisp b/src/property.lisp
index bf62fe5..dad5ad3 100644
--- a/src/property.lisp
+++ b/src/property.lisp
@@ -252,8 +252,8 @@ parsing FORMSV and pushing SETPROP keyword argument pairs to plist SLOTSV."
(check (and (getf ,slotsv :check)
(equal (cadr (getf ,slotsv :check))
(cadr (getf ,slotsv :apply)))
- `(when (progn ,@(cddr (strip-declarations
- (getf ,slotsv :check))))
+ `(when (progn ,@(strip-declarations
+ (cddr (getf ,slotsv :check))))
(return-from ,,name :no-change)))))
`(progn
(eval-when (:compile-toplevel :load-toplevel :execute)