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 3e8ff53 + 37a3de8 commit 43b4036Copy full SHA for 43b4036
haskell-load.el
@@ -205,7 +205,8 @@ list of modules where missed IDENT was found."
205
(string-match
206
"Use \\([A-Z][A-Za-z]+\\) if you want to disable this"
207
msg)
208
- (string-match "use \\([A-Z][A-Za-z]+\\)" msg)
+ (and (string-match "use \\([A-Z][A-Za-z]+\\)" msg)
209
+ (not (string-match "refactoring to use" msg)))
210
(string-match "You need \\([A-Z][A-Za-z]+\\)" msg)))
211
(when haskell-process-suggest-language-pragmas
212
(haskell-process-suggest-pragma
0 commit comments