From aee9cddd59ca99078033dcbb96661ed087678d40 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Mon, 29 Jul 2024 12:33:54 +0200 Subject: [PATCH] ; Fix 'kubed-kubectl-command' error when 'transient' is not loaded --- kubed.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kubed.el b/kubed.el index 633df97..44319e7 100644 --- a/kubed.el +++ b/kubed.el @@ -1930,8 +1930,11 @@ Interactively, prompt for COMMAND with completion for `kubectl' arguments." "Command: " (concat kubed-kubectl-program " " - (let ((args (kubed-transient-args)) - (scope (and (fboundp 'transient-scope) (transient-scope)))) + (let* ((args (kubed-transient-args)) + (prefix (and (fboundp 'transient-prefix-object) + (transient-prefix-object))) + (scope (and prefix (fboundp 'eieio-oref) + (eieio-oref prefix 'scope)))) (when (or args scope) (concat (string-join (append scope args) " ") " ")))) 'kubed-kubectl-command-history))) -- 2.39.5