ghc-mod 0.5.4 → 0.5.5
raw patch · 4 files changed
+5/−5 lines, 4 files
Files
- GHCMod.hs +1/−1
- elisp/ghc-flymake.el +2/−2
- elisp/ghc.el +1/−1
- ghc-mod.cabal +1/−1
GHCMod.hs view
@@ -21,7 +21,7 @@ ---------------------------------------------------------------- usage :: String-usage = "ghc-mod version 0.5.4\n"+usage = "ghc-mod version 0.5.5\n" ++ "Usage:\n" ++ "\t ghc-mod list [-l]\n" ++ "\t ghc-mod lang [-l]\n"
elisp/ghc-flymake.el view
@@ -78,7 +78,7 @@ (with-temp-buffer (insert str) (goto-char (point-min))- (when (re-search-forward "Inferred type: " nil t)+ (when (re-search-forward "Inferred type: \\|no type signature:\\( \\|\0 +\\)?" nil t) (delete-region (point-min) (point))) (when (re-search-forward " forall [^.]+\\." nil t) (replace-match ""))@@ -95,7 +95,7 @@ (dolist (data (ghc-flymake-err-list)) (save-excursion (cond- ((string-match "Inferred type: " data)+ ((string-match "Inferred type: \\|no type signature:" data) (beginning-of-line) (insert (ghc-extract-type data) "\n")) ((string-match "lacks an accompanying binding" data)
elisp/ghc.el view
@@ -16,7 +16,7 @@ ;;; Code: -(defconst ghc-version "0.5.4")+(defconst ghc-version "0.5.5") ;; (eval-when-compile ;; (require 'haskell-mode))
ghc-mod.cabal view
@@ -1,5 +1,5 @@ Name: ghc-mod-Version: 0.5.4+Version: 0.5.5 Author: Kazu Yamamoto <kazu@iij.ad.jp> Maintainer: Kazu Yamamoto <kazu@iij.ad.jp> License: BSD3