Replaced concatenate with append.

This commit is contained in:
Austin Bingham
2017-05-15 21:42:30 +02:00
parent e6ec40f14e
commit 724b32affe

View File

@@ -88,7 +88,7 @@ rest (e.g. filename) gets filled in elsewhere."
;; prepared for the theoretical possibility that the issues are somehow ;; prepared for the theoretical possibility that the issues are somehow
;; split across multiple files. This is basically a punt in lieu of ;; split across multiple files. This is basically a punt in lieu of
;; more information. ;; more information.
(issues (apply 'concatenate 'list (mapcar 'cdr full-results)))) (issues (apply 'append (mapcar 'cdr full-results))))
(mapcar 'flycheck-vale--issue-to-error issues))) (mapcar 'flycheck-vale--issue-to-error issues)))
(defun flycheck-vale--start (checker callback) (defun flycheck-vale--start (checker callback)