File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 45
45
:type 'string
46
46
:group 'ghc-core )
47
47
48
+ (define-obsolete-variable-alias 'ghc-core-create-options 'ghc-core-program-args
49
+ " haskell-mode 13.7" )
50
+
48
51
(defcustom ghc-core-program-args
49
52
'(" -O2" )
50
53
" Additional options to be passed to GHC when generating core output.
@@ -66,9 +69,6 @@ See `M-x manual-entry RET ghc' for more details."
66
69
:type '(repeat (string :tag " Argument" ))
67
70
:group 'ghc-core )
68
71
69
- (define-obsolete-variable-alias 'ghc-core-create-options 'ghc-core-program-args
70
- " haskell-mode 13.7" )
71
-
72
72
(defun ghc-core-clean-region (start end )
73
73
" Remove commonly ignored annotations and namespace prefixes
74
74
in the region between START and END."
Original file line number Diff line number Diff line change @@ -121,13 +121,13 @@ The format should be the same as for `compilation-error-regexp-alist'.")
121
121
; ;; -> Make font lock work for strings, directories, hyperlinks
122
122
; ;; -> Make font lock work for key words???
123
123
124
+ (defvaralias 'inferior-haskell-mode-map 'inf-haskell-map )
125
+
124
126
(defvar inf-haskell-map
125
127
(let ((map (make-sparse-keymap )))
126
128
(define-key map " \C -c\C -d" 'comint-kill-subjob )
127
129
map))
128
130
129
- (defvaralias 'inferior-haskell-mode-map 'inf-haskell-map )
130
-
131
131
(define-derived-mode inferior-haskell-mode comint-mode " Inf-Haskell"
132
132
" Major mode for interacting with an inferior Haskell process."
133
133
:group 'inferior-haskell
You can’t perform that action at this time.
0 commit comments