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

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

[nongnu] elpa/helm c880ad63fc 2/2: Let's use completion in frame in helm


From: ELPA Syncer
Subject: [nongnu] elpa/helm c880ad63fc 2/2: Let's use completion in frame in helm-eval
Date: Sun, 31 Jul 2022 05:58:32 -0400 (EDT)

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

    Let's use completion in frame in helm-eval
    
    now displaying helm nested sessions in frames is fixed.
---
 helm-eval.el | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/helm-eval.el b/helm-eval.el
index a65d98858b..2ee3f71600 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -180,12 +180,11 @@ Should take one arg: the string to display."
 (defun helm-eval-expression (arg)
   "Preconfigured `helm' for `helm-source-evaluation-result'."
   (interactive "P")
-  (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)))
+  (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]