aboutsummaryrefslogtreecommitdiff
path: root/src/propspec.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-19 14:04:25 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-19 18:56:59 -0700
commit9ec5f3c42d4850419da119005aae1da2db707e3c (patch)
tree53bc87200d831333c1045613dd26780adf84ab0a /src/propspec.lisp
parent887003002331b2c27685319e902f748ce925f479 (diff)
downloadconsfigurator-9ec5f3c42d4850419da119005aae1da2db707e3c.tar.gz
reindent
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/propspec.lisp')
-rw-r--r--src/propspec.lisp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/propspec.lisp b/src/propspec.lisp
index c0cec5c..d39f732 100644
--- a/src/propspec.lisp
+++ b/src/propspec.lisp
@@ -286,17 +286,17 @@ expression."
(define-function-property-combinator eseqprops (&rest propapps)
(:retprop :type (collapse-types (mapcar #'propapptype propapps))
- :check (constantly nil)
- :hostattrs (lambda () (mapc #'propappattrs propapps))
- :apply (lambda () (apply-and-print propapps))))
+ :check (constantly nil)
+ :hostattrs (lambda () (mapc #'propappattrs propapps))
+ :apply (lambda () (apply-and-print propapps))))
(define-function-property-combinator seqprops (&rest propapps)
(:retprop :type (collapse-types (mapcar #'propapptype propapps))
- :check (constantly nil)
- :hostattrs (lambda () (mapc #'propappattrs propapps))
- :apply (lambda ()
- (with-skip-failed-changes
- (apply-and-print propapps)))))
+ :check (constantly nil)
+ :hostattrs (lambda () (mapc #'propappattrs propapps))
+ :apply (lambda ()
+ (with-skip-failed-changes
+ (apply-and-print propapps)))))
(defmacro with-requirements (propapp &body requirements)
"Apply PROPAPP only after applying each dependency in REQUIREMENTS.