From 50915cdb6080aff3f0c29a369efd29aa5e47e5f2 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sun, 18 Jul 2021 22:33:02 -0700 Subject: UNWIND-PROTECT-IN-PARENT -> UNWIND-PROTECT No longer needed thanks to f4e9170e73cb4bcfa7328422b4ff4f72d1339dd0. Signed-off-by: Sean Whitton --- src/combinator.lisp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/combinator.lisp') diff --git a/src/combinator.lisp b/src/combinator.lisp index a4274ee..cf73cce 100644 --- a/src/combinator.lisp +++ b/src/combinator.lisp @@ -173,11 +173,10 @@ apply the elements of REQUIREMENTS in reverse order." ;; the user or a combinator invokes a SKIP-PROPERTY restart ;; established further down the property call stack. (result 'failed-change)) - (unwind-protect-in-parent - (with-skip-property propapp - (setq result (if announce - (announce-propapp-apply propapp) - (propapp-apply propapp)))) + (unwind-protect (with-skip-property propapp + (setq result (if announce + (announce-propapp-apply propapp) + (propapp-apply propapp)))) (when (and (plusp (length buffer)) (or (> *consfigurator-debug-level* 1) (not (eql result :no-change)))) -- cgit v1.2.3