File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -328,9 +328,9 @@ when Data.Map is the candidate.
328
328
:group 'shm
329
329
:type '(repeat 'string ))
330
330
331
- (defcustom haskell-ghc-supported-languages
331
+ (defcustom haskell-ghc-supported-extensions
332
332
(split-string (shell-command-to-string " ghc --supported-extensions" ))
333
- " List of language pragmas supported by the installed version of GHC."
333
+ " List of language extensions supported by the installed version of GHC."
334
334
:group 'haskell
335
335
:type '(repeat string))
336
336
Original file line number Diff line number Diff line change 92
92
(search-forward-regexp " \\ _<LANGUAGE\\ _>" p t ))))
93
93
(setq symbol-bounds (bounds-of-thing-at-point 'symbol )))
94
94
(list (car symbol-bounds) (cdr symbol-bounds)
95
- haskell-ghc-supported-languages ))
95
+ haskell-ghc-supported-extensions ))
96
96
((setq symbol-bounds (bounds-of-thing-at-point 'symbol ))
97
97
(cl-destructuring-bind (start . end) symbol-bounds
98
98
(list start end
You can’t perform that action at this time.
0 commit comments