Skip to content

Commit 7d571f7

Browse files
committed
Var definition moved to haskell-utils
1 parent 81f32e5 commit 7d571f7

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

haskell-session.el

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
(require 'haskell-cabal)
3232
(require 'haskell-string)
3333
(require 'haskell-customize)
34+
(require 'haskell-utils)
3435

3536
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3637
;; Globals

haskell-utils.el

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
;; require/depend-on any other haskell-mode modules in order to
3939
;; stay at the bottom of the module dependency graph.
4040

41+
(defvar haskell-process-load-or-reload-p t
42+
"Non-nil means there will be no prompts on starting REPL. Defaults will be accepted.")
43+
4144
(defvar haskell-utils-async-post-command-flag nil
4245
"Non-nil means some commands were triggered during async function execution.")
4346
(make-variable-buffer-local 'haskell-utils-async-post-command-flag)

haskell.el

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
(require 'haskell-modules)
3030
(require 'haskell-string)
3131
(require 'haskell-completions)
32+
(require 'haskell-utils)
3233

3334
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3435
;; Basic configuration hooks

0 commit comments

Comments
 (0)