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.
2 parents 6a70c18 + e6169a6 commit 5632eefCopy full SHA for 5632eef
haskell-load.el
@@ -111,7 +111,7 @@ actual Emacs buffer of the module being loaded."
111
t)
112
((haskell-process-consume
113
process
114
- "Ok, \\(?:[a-z]+\\) module loaded\\.$") ;; for ghc 8.4
+ "Ok, \\(?:[a-z]+\\) modules? loaded\\.$") ;; for ghc 8.4
115
116
117
@@ -125,6 +125,10 @@ actual Emacs buffer of the module being loaded."
125
126
"Failed, modules loaded: \\(.+\\)\\.$")
127
nil)
128
+ ((haskell-process-consume
129
+ process
130
+ "Failed, no modules loaded\\.$") ;; for ghc 8.4
131
+ nil)
132
(t
133
(error (message "Unexpected response from haskell process.")))))
134
(modules (haskell-process-extract-modules buffer))
0 commit comments