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 f710b85 commit 4f6e301Copy full SHA for 4f6e301
haskell-process.el
@@ -93,9 +93,11 @@ HPTYPE is the result of calling `'haskell-process-type`' function."
93
nil)
94
(apply haskell-process-wrapper-function
95
(list
96
- (cons haskell-process-path-cabal (cons "repl" haskell-process-args-cabal-repl))))
97
- (let ((target (haskell-session-target session)))
98
- (if target (list target) nil))))
+ (append
+ (list haskell-process-path-cabal "repl")
+ haskell-process-args-cabal-repl
99
+ (let ((target (haskell-session-target session)))
100
+ (if target (list target) nil)))))))
101
('cabal-ghci
102
(append (list (format "Starting inferior cabal-ghci process using %s ..."
103
haskell-process-path-cabal-ghci)
0 commit comments