branch: elpa/dart-mode
commit 68f7f4f82fb44eef13a6db6082bac09f0ef7c4ad
Author: Brady Trainor <[email protected]>
Commit: Brady Trainor <[email protected]>
Require cl for emacs 24.4, 24.5
Related: commit 8e09b68, issue #51.
---
dart-mode.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dart-mode.el b/dart-mode.el
index 55a6823..a44808b 100644
--- a/dart-mode.el
+++ b/dart-mode.el
@@ -80,6 +80,9 @@
(require 'cc-mode)
(eval-when-compile
+ (and (= emacs-major-version 24)
+ (>= emacs-minor-version 4)
+ (require 'cl))
(require 'cc-langs)
(require 'cc-fonts))