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

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

[nongnu] elpa/geiser-chicken 74b88cc 010/102: Adds necessary parameter t


From: Philip Kaludercic
Subject: [nongnu] elpa/geiser-chicken 74b88cc 010/102: Adds necessary parameter to csi for Windows.
Date: Sun, 1 Aug 2021 18:26:46 -0400 (EDT)

branch: elpa/geiser-chicken
commit 74b88cc9b74224cbfebff3472664efb58a7c484b
Author: Dan Leslie <dan@ironoxide.ca>
Commit: Dan Leslie <dan@ironoxide.ca>

    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)



reply via email to

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