branch: elpa/dart-mode
commit 1c9da5a7fdbdb703f7dffc9da81abef010e897e4
Author: Philipp <[email protected]>
Commit: Natalie Weizenbaum <[email protected]>
Explicitly load compile.el so that the compilation-error-regexp-* variables
are defined (#41)
This fixes compiler warnings about these variables.
---
dart-mode.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/dart-mode.el b/dart-mode.el
index 6fa8391..912d70d 100644
--- a/dart-mode.el
+++ b/dart-mode.el
@@ -90,6 +90,7 @@
(eval-and-compile (c-add-language 'dart-mode 'java-mode))
(require 'cl-lib)
+(require 'compile)
(require 'dash)
(require 'flycheck)
(require 'json)