Skip to content

Commit

Permalink
Defvar completing-read-function
Browse files Browse the repository at this point in the history
  • Loading branch information
markus1189 committed Feb 25, 2014
1 parent 4bcb2db commit 1248ab0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions haskell-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@
(require 'haskell-string)
(with-no-warnings (require 'cl))

(defvar completing-read-function)

;; FIXME: code-smell: too many forward decls for haskell-session are required here
(defvar haskell-session)
(declare-function haskell-process-do-try-info "haskell-process" (sym))
Expand Down
2 changes: 2 additions & 0 deletions haskell-process.el
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
(require 'haskell-navigate-imports)
(with-no-warnings (require 'cl))

(defvar completing-read-function)

;; FIXME: haskell-process shouldn't depend on haskell-interactive-mode to avoid module-dep cycles
(declare-function haskell-interactive-mode-echo "haskell-interactive-mode" (session message &optional mode))
(declare-function haskell-interactive-mode-compile-error "haskell-interactive-mode" (session message))
Expand Down
2 changes: 2 additions & 0 deletions haskell-session.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
(require 'haskell-string)
(with-no-warnings (require 'cl))

(defvar completing-read-function)

(declare-function haskell-interactive-mode "haskell-interactive-mode" ())
(declare-function haskell-kill-session-process "haskell-process" (&optional session))
(declare-function haskell-process-start "haskell-process" (session))
Expand Down

0 comments on commit 1248ab0

Please sign in to comment.