From 91bec0c35127df66f8148a444cf26a49f54680d4 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Tue, 7 Jan 2025 20:22:10 +0100 Subject: [PATCH] ; * lisp/transient.el (transient-infix-read): Fix warning. --- lisp/transient.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/transient.el b/lisp/transient.el index 66120128729..a863eccd57b 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -3400,8 +3400,7 @@ it\", in which case it is pointless to preserve history.)" (not always-read) transient--prefix) (oset obj value nil) - (let* ((enable-recursive-minibuffers t) - (reader (oref obj reader)) + (let* ((reader (oref obj reader)) (choices (if (functionp choices) (funcall choices) choices)) (prompt (transient-prompt obj)) (value (if multi-value (string-join value ",") value)) -- 2.39.5