ghc-mod 4.1.5 → 4.1.6
raw patch · 3 files changed
+4/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- elisp/ghc-process.el +2/−1
- elisp/ghc.el +1/−1
- ghc-mod.cabal +1/−1
elisp/ghc-process.el view
@@ -63,7 +63,8 @@ (t cpro))) (defun ghc-start-process (name buf)- (let ((pro (start-file-process name buf ghc-interactive-command "-l" "-b" "\"\n\"")))+ (let* ((opts (append '("-b" "\n" "-l") (ghc-make-ghc-options)))+ (pro (apply 'start-file-process name buf ghc-interactive-command opts))) (set-process-filter pro 'ghc-process-filter) (set-process-sentinel pro 'ghc-process-sentinel) (set-process-query-on-exit-flag pro nil)
elisp/ghc.el view
@@ -28,7 +28,7 @@ (< emacs-minor-version minor))) (error "ghc-mod requires at least Emacs %d.%d" major minor))) -(defconst ghc-version "4.1.5")+(defconst ghc-version "4.1.6") ;; (eval-when-compile ;; (require 'haskell-mode))
ghc-mod.cabal view
@@ -1,5 +1,5 @@ Name: ghc-mod-Version: 4.1.5+Version: 4.1.6 Author: Kazu Yamamoto <kazu@iij.ad.jp> Maintainer: Kazu Yamamoto <kazu@iij.ad.jp> License: BSD3