aboutsummaryrefslogtreecommitdiff
path: root/src/combinator.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/combinator.lisp')
-rw-r--r--src/combinator.lisp9
1 files changed, 4 insertions, 5 deletions
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))))