Skip to content
This repository has been archived by the owner on Apr 25, 2020. It is now read-only.

Commit

Permalink
removing unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kazu-yamamoto committed Aug 20, 2015
1 parent afe8f69 commit f0a98cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elisp/ghc-check.el
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ nil do not display errors/warnings.
(defun ghc-to-info (errs)
;; [^\t] to include \n.
(let ((regex "^\\([^\n]*\\):\\([0-9]+\\):\\([0-9]+\\): *\\([^\t]+\\)")
info infos)
infos)
(dolist (err errs (nreverse infos))
(when (string-match regex err)
(let* ((file (expand-file-name (match-string 1 err) ghc-process-root)) ;; for Windows
Expand Down

0 comments on commit f0a98cf

Please sign in to comment.