We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7d457 commit 06fd624Copy full SHA for 06fd624
le-lisp.el
@@ -47,10 +47,10 @@
47
(defun lispy--eval-lisp (str)
48
"Eval STR as Common Lisp code."
49
(let* ((deactivate-mark nil)
50
- (result (with-current-buffer (process-buffer (lispy--cl-process))
51
- (if (lispy--use-sly-p)
52
- (sly-eval `(slynk:eval-and-grab-output ,str))
53
- (slime-eval `(swank:eval-and-grab-output ,str))))))
+ (result (if (lispy--use-sly-p)
+ (with-current-buffer (process-buffer (lispy--cl-process))
+ (sly-eval `(slynk:eval-and-grab-output ,str)))
+ (slime-eval `(swank:eval-and-grab-output ,str)))))
54
(if (equal (car result) "")
55
(cadr result)
56
(concat (propertize (car result)
0 commit comments