File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -336,17 +336,6 @@ same vein as `haskell-indent-spaces'."
336
336
:group 'haskell
337
337
:type '(repeat 'string ))
338
338
339
- (defcustom haskell-ghc-supported-extensions
340
- (split-string (shell-command-to-string " ghc --supported-extensions" ))
341
- " List of language extensions supported by the installed version of GHC."
342
- :group 'haskell
343
- :type '(repeat string))
344
-
345
- (defcustom haskell-ghc-supported-options
346
- (split-string (shell-command-to-string " ghc --show-options" ))
347
- " List of options supported by the installed version of GHC."
348
- :group 'haskell
349
- :type '(repeat string))
350
339
351
340
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
352
341
; ; Accessor functions
Original file line number Diff line number Diff line change @@ -202,6 +202,20 @@ be set to the preferred literate style."
202
202
map)
203
203
" Keymap used in Haskell mode." )
204
204
205
+
206
+ (defvar haskell-ghc-supported-extensions
207
+ (split-string (shell-command-to-string " ghc --supported-extensions" ))
208
+ " List of language extensions supported by the installed version of GHC.
209
+ This list comes from default system's GHC, i.e. first `ghc`
210
+ executable found in PATH." )
211
+
212
+ (defvar haskell-ghc-supported-options
213
+ (split-string (shell-command-to-string " ghc --show-options" ))
214
+ " List of options supported by the installed version of GHC.
215
+ This list comes from default system's GHC, i.e. first `ghc`
216
+ executable found in PATH." )
217
+
218
+
205
219
(defun haskell-mode-enable-process-minor-mode ()
206
220
" Tell the user to choose a minor mode for process interaction."
207
221
(interactive )
You can’t perform that action at this time.
0 commit comments