From 5827de0b4a7057d5ce816c37391134b2428159f2 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 8 Apr 2021 13:29:39 -0700 Subject: APPLY-AND-PRINT: fix argument order Signed-off-by: Sean Whitton --- src/combinator.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/combinator.lisp') diff --git a/src/combinator.lisp b/src/combinator.lisp index d2d02ff..71ead21 100644 --- a/src/combinator.lisp +++ b/src/combinator.lisp @@ -117,7 +117,7 @@ apply the elements of REQUIREMENTS in reverse order." (propapps (remove-if #'null (if unapply (reverse propapps) propapps)))) (dolist (propapp propapps ret) - (let ((announce (or (> 1 *consfigurator-debug-level*) + (let ((announce (or (> *consfigurator-debug-level* 1) (not (get (get (car propapp) 'combinator) 'inline-combinator))))) (multiple-value-bind (result output) @@ -130,7 +130,7 @@ apply the elements of REQUIREMENTS in reverse order." (announce-propapp-apply propapp) (propapp-apply propapp)) (skip-property () :failed-change)) - (when (and output (or (> 1 *consfigurator-debug-level*) + (when (and output (or (> *consfigurator-debug-level* 1) (not (eql result :no-change)))) (fresh-line) (princ output)) -- cgit v1.2.3