branch: elpa/lua-mode
commit f8a41b86ef8d794ce84491b546b2c8af4a61d9fc
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>

    Fix cl-lib dependency for Emacs23 tests
---
 Cask                          | 4 +++-
 ert-tests/test-indentation.el | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Cask b/Cask
index 8f1dd5a..8a4e261 100644
--- a/Cask
+++ b/Cask
@@ -1,9 +1,11 @@
 (source melpa)
+(source gnu)
 
 (package "lua-mode" "dev" "Major mode for editing Lua")
 
 (development
- (depends-on "s"))
+ (depends-on "s")
+ (depends-on "cl-lib"))
 
 ;; Local Variables:
 ;; mode: emacs-lisp
diff --git a/ert-tests/test-indentation.el b/ert-tests/test-indentation.el
index 3dc65a1..8639820 100644
--- a/ert-tests/test-indentation.el
+++ b/ert-tests/test-indentation.el
@@ -1,4 +1,4 @@
-(require 'cl)
+(require 'cl-lib)
 (require 'ert)
 (require 'lua-font-lock-test-helpers
          ;; let's try a bit to help Emacs find the helpers, just in case

Reply via email to