aboutsummaryrefslogtreecommitdiff
path: root/src/property.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-03-09 16:10:44 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-03-09 16:11:34 -0700
commitac4a7c1246464844ba75f62ce72509c283cd6dc1 (patch)
treedede1456509374c387befaa6762d41fc92b7ccfd /src/property.lisp
parent3a037315b8cb60d8c6da94ba6db7123292592fa1 (diff)
downloadconsfigurator-ac4a7c1246464844ba75f62ce72509c283cd6dc1.tar.gz
replace usages of NOOP & drop the function
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property.lisp')
-rw-r--r--src/property.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/property.lisp b/src/property.lisp
index 885a24d..7467ef6 100644
--- a/src/property.lisp
+++ b/src/property.lisp
@@ -76,7 +76,7 @@
:lisp :posix))
(defun propdesc (prop &rest args)
- (apply (get prop 'desc #'noop) args))
+ (apply (get prop 'desc (lambda-ignoring-args)) args))
(defun propappdesc (propapp)
(when propapp
@@ -86,14 +86,14 @@
(get prop 'plambda))
(defun propattrs (prop &rest args)
- (apply (get prop 'hostattrs #'noop) args))
+ (apply (get prop 'hostattrs (lambda-ignoring-args)) args))
(defun propappattrs (propapp)
(when propapp
(apply #'propattrs propapp)))
(defun propcheck (prop &rest args)
- (apply (get prop 'check #'noop) args))
+ (apply (get prop 'check (lambda-ignoring-args)) args))
(defun propappcheck (propapp)
(if propapp (apply #'propcheck propapp) t))