From 9966842a2166d42cb6969b6bbc5154960d1252bc Mon Sep 17 00:00:00 2001 From: Noam Postavsky Date: Tue, 5 Jun 2018 21:07:19 -0400 Subject: [PATCH] Let isearch-yank-kill enable isearch-mode if needed (Bug#21419) * lisp/isearch.el (isearch-yank-kill): Enable isearch-mode if needed. --- lisp/isearch.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/isearch.el b/lisp/isearch.el index feadf10e8b7..1e785a44c51 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -2036,6 +2036,7 @@ If search string is empty, just beep." (defun isearch-yank-kill () "Pull string from kill ring into search string." (interactive) + (unless isearch-mode (isearch-mode t)) (isearch-yank-string (current-kill 0))) (defun isearch-yank-pop () -- 2.39.5