branch: elpa/geiser-chicken
commit 74b88cc9b74224cbfebff3472664efb58a7c484b
Author: Dan Leslie <[email protected]>
Commit: Dan Leslie <[email protected]>
Adds necessary parameter to csi for Windows.
-:c is required to make csi behave nicely with Emacs on Windows.
This ought to resolve jaor/geiser#67
---
elisp/geiser-chicken.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/elisp/geiser-chicken.el b/elisp/geiser-chicken.el
index d5cda6d..5b28055 100644
--- a/elisp/geiser-chicken.el
+++ b/elisp/geiser-chicken.el
@@ -47,9 +47,9 @@
:group 'geiser)
(geiser-custom--defcustom geiser-chicken-binary
- (cond ((eq system-type 'windows-nt) "csi.exe")
- ((eq system-type 'darwin) "csi")
- (t "csi"))
+ (cond ((eq system-type 'windows-nt) '("csi.exe" "-:c"))
+ ((eq system-type 'darwin) "csi")
+ (t "csi"))
"Name to use to call the Chicken executable when starting a REPL."
:type '(choice string (repeat string))
:group 'geiser-chicken)