diff --git a/lisp/lint/elsa.el b/lisp/lint/elsa.el index 69b0e107..644e41fa 100644 --- a/lisp/lint/elsa.el +++ b/lisp/lint/elsa.el @@ -54,10 +54,10 @@ (--each (reverse errors) (let ((line (string-trim (concat file ":" (elsa-message-format it))))) (cond ((string-match-p "[: ][Ee]rror:" line) - (eask-error line)) + (eask-error "%s" line)) ((string-match-p "[: ][Ww]arning:" line) - (eask-warn line)) - (t (eask-log line))))) + (eask-warn "%s" line)) + (t (eask-log "%s" line))))) (eask-msg "No issues found")))) (eask-start