From b455edd25288bcc55d4ca6b533089712cf9d8087 Mon Sep 17 00:00:00 2001 From: Joseph Turner Date: Mon, 2 Oct 2023 23:46:22 -0700 Subject: [PATCH] Fix inapt demo Signed-off-by: Joseph Turner --- README.org | 4 ++-- transient-showcase.el | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 27c1573..d2bc9e4 100644 --- a/README.org +++ b/README.org @@ -2025,10 +2025,10 @@ of =magit=. ["Inapt Predicates Child" ("s" "switched" tsc--wave-surely :transient transient--do-return - :if tsc--child-scope-p) + :inapt-if tsc--child-scope-p) ("u" "unswitched" tsc--wave-normally :transient transient--do-return - :if-not tsc--child-scope-p)] + :inapt-if-not tsc--child-scope-p)] ;; in the body, we read the value of the parent and set our scope to ;; non-nil if the switch is set diff --git a/transient-showcase.el b/transient-showcase.el index 2732959..3bcc088 100644 --- a/transient-showcase.el +++ b/transient-showcase.el @@ -878,10 +878,10 @@ When this is called in layouts, it's the transient being layed out" ["Inapt Predicates Child" ("s" "switched" tsc--wave-surely :transient transient--do-return - :if tsc--child-scope-p) + :inapt-if tsc--child-scope-p) ("u" "unswitched" tsc--wave-normally :transient transient--do-return - :if-not tsc--child-scope-p)] + :inapt-if-not tsc--child-scope-p)] ;; in the body, we read the value of the parent and set our scope to ;; non-nil if the switch is set