From 724b32affec8ca712cb5fddbab46909874eae10a Mon Sep 17 00:00:00 2001 From: Austin Bingham Date: Mon, 15 May 2017 21:42:30 +0200 Subject: [PATCH] Replaced `concatenate` with `append`. --- flycheck-vale.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flycheck-vale.el b/flycheck-vale.el index a42113a..3e75b5e 100644 --- a/flycheck-vale.el +++ b/flycheck-vale.el @@ -88,7 +88,7 @@ rest (e.g. filename) gets filled in elsewhere." ;; prepared for the theoretical possibility that the issues are somehow ;; split across multiple files. This is basically a punt in lieu of ;; more information. - (issues (apply 'concatenate 'list (mapcar 'cdr full-results)))) + (issues (apply 'append (mapcar 'cdr full-results)))) (mapcar 'flycheck-vale--issue-to-error issues))) (defun flycheck-vale--start (checker callback)