We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4858b9 commit 86f9762Copy full SHA for 86f9762
elixir-mode.el
@@ -557,7 +557,9 @@ just return nil."
557
(cl-function
558
(lambda ((symbol . spec))
559
"Add SPEC to `compilation-error-regexp-alist-alist'."
560
- (setf (alist-get symbol compilation-error-regexp-alist-alist) spec)))
+ (if (< 24 emacs-major-version)
561
+ (cl-pushnew (cons symbol spec) compilation-error-regexp-alist-alist)
562
+ (setf (alist-get symbol compilation-error-regexp-alist-alist) spec))))
563
564
'((elixir-error
565
"^== Compilation error in file \\(.*\\) ==$"
0 commit comments