branch: elpa/rust-mode
commit bded6679d0659032851d033cdd206aae2a884ba4
Author: Philipp Stephani <[email protected]>
Commit: Nathan Moreau <[email protected]>
Add missing ‘require’ form.
‘compilation-face’ is defined in the ‘compile’ library, so we should
‘require’
that library.
---
rust-mode-tests.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/rust-mode-tests.el b/rust-mode-tests.el
index 2464307..363d73c 100644
--- a/rust-mode-tests.el
+++ b/rust-mode-tests.el
@@ -3,6 +3,7 @@
(require 'rust-mode)
(require 'ert)
(require 'cl-lib)
+(require 'compile)
(require 'imenu)
(defconst rust-test-fill-column 32)