summaryrefslogtreecommitdiff
path: root/helm.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thievol@posteo.net>2021-05-18 13:54:40 +0200
committerThierry Volpiatto <thievol@posteo.net>2021-05-18 13:54:40 +0200
commit6be278a77fbe0f9a2507608da9e0eb032dcb8a67 (patch)
tree28bb6f2c419698f4f140195c47a9f373a406997e /helm.el
parent4bf214a78e21a208cfc0bd3a84cca59f0354322e (diff)
Remove the with-helm-quittable unneeded in helm-check-minibuffer-input
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.
Diffstat (limited to 'helm.el')
-rw-r--r--helm.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/helm.el b/helm.el
index 474c5588..62c3989e 100644
--- a/helm.el
+++ b/helm.el
@@ -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."