branch: master
commit 48c7087eb6f5aabf4f04dd96d64e9f75ab3fb1dc
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
ivy.el (ivy-reverse-i-search): Don't bind ivy-recursive-restore to nil
Old behavior was introduced in #323. That use case still works fine
now.
Fixes #1215
---
ivy.el | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/ivy.el b/ivy.el
index 6db8e00..cba806b 100644
--- a/ivy.el
+++ b/ivy.el
@@ -4121,8 +4121,7 @@ The selected history element will be inserted into the
minibuffer."
(interactive)
(let ((enable-recursive-minibuffers t)
(history (symbol-value (ivy-state-history ivy-last)))
- (old-last ivy-last)
- (ivy-recursive-restore nil))
+ (old-last ivy-last))
(ivy-read "Reverse-i-search: "
(delete-dups (copy-sequence history))
:action (lambda (x)