emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/helm 72ddbb1b5d 2/3: Don't display completion in frame fro


From: ELPA Syncer
Subject: [nongnu] elpa/helm 72ddbb1b5d 2/3: Don't display completion in frame from an active minibuffer
Date: Sat, 30 Jul 2022 00:58:54 -0400 (EDT)

branch: elpa/helm
commit 72ddbb1b5df46bad7ff6cb3944684e0636e351ad
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Don't display completion in frame from an active minibuffer
---
 helm-eval.el | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/helm-eval.el b/helm-eval.el
index 0ac4e11546..0b87b06f4d 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -171,11 +171,12 @@ Should take one arg: the string to display."
 (defun helm-eval-expression (arg)
   "Preconfigured `helm' for `helm-source-evaluation-result'."
   (interactive "P")
-  (helm :sources (helm-build-evaluation-result-source)
-        :input (when arg (thing-at-point 'sexp))
-        :buffer "*helm eval*"
-        :echo-input-in-header-line nil
-        :history 'read-expression-history))
+  (let (helm-show-completion-display-function)
+    (helm :sources (helm-build-evaluation-result-source)
+          :input (when arg (thing-at-point 'sexp))
+          :buffer "*helm eval*"
+          :echo-input-in-header-line nil
+          :history 'read-expression-history)))
 
 (defvar eldoc-idle-delay)
 ;;;###autoload



reply via email to

[Prev in Thread] Current Thread [Next in Thread]