From 723710b001f2ecd392fb3ecec4669644998107a3 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Fri, 2 Aug 2024 11:49:56 +0200 Subject: [PATCH] (read--expression-try-read): Mark as minibuffer-specific --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 54a64e67c4d..d7c545263c9 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2061,7 +2061,7 @@ Exit the minibuffer if successful, else report the error to the user and move point to the location of the error. If point is not already at the location of the error, push a mark before moving point." - (interactive) + (interactive "" minibuffer-mode) (unless (> (minibuffer-depth) 0) (error "Minibuffer must be active")) (if (let* ((contents (minibuffer-contents)) -- 2.39.5