Skip to content

Commit

Permalink
Remove the with-helm-quittable unneeded in helm-check-minibuffer-input
Browse files Browse the repository at this point in the history
Fix #2417.

This have been added years ago for unknow reasons, lets remove it and see
what's going on, IMO it is unneeded, at least at this place.
  • Loading branch information
thierryvolpiatto committed May 18, 2021
1 parent 4bf214a commit 6be278a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions helm.el
Original file line number Diff line number Diff line change
Expand Up @@ -3979,10 +3979,9 @@ WARNING: Do not use this mode yourself, it is internal to Helm."
;;
(defun helm-check-minibuffer-input ()
"Check minibuffer content."
(with-helm-quittable
(with-selected-window (or (active-minibuffer-window)
(minibuffer-window))
(helm-check-new-input (minibuffer-contents)))))
(with-selected-window (or (active-minibuffer-window)
(minibuffer-window))
(helm-check-new-input (minibuffer-contents))))

(defun helm-check-new-input (input)
"Check INPUT string and update the helm buffer if necessary."
Expand Down

1 comment on commit 6be278a

@mullikine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can confirm that the fix works for me.

Please sign in to comment.