branch: elpa/parseclj
commit 1cf0fb9d3f04ad2f3513b76098a8611e0cc475d1
Author: Arne Brasseur <[email protected]>
Commit: Arne Brasseur <[email protected]>
More build related fixes
---
.travis.yml | 2 +-
clj-parse-test-runner.el | 2 +-
clj-parse.el | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 0df296acaa..16e2a68de7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ env:
matrix:
allow_failures:
- - env: VERSION=25.2.2 EMACS=emacs PACKAGE=emacs25 CLJ_PARSE_LINT=true
+ - env: VERSION=25.2.2 EMACS=emacs-25.2 PACKAGE=emacs25 CLJ_PARSE_LINT=true
before_install:
- sudo add-apt-repository -y ppa:kelleyk/emacs
diff --git a/clj-parse-test-runner.el b/clj-parse-test-runner.el
index 9cc25975cf..4a49138c9a 100644
--- a/clj-parse-test-runner.el
+++ b/clj-parse-test-runner.el
@@ -34,7 +34,7 @@
(if (getenv "CLJ_PARSE_LINT")
(let ((success t))
- (dolist (file files)
+ (dolist (file clj-parse-load-files)
(with-temp-buffer
(insert-file-contents file t)
(emacs-lisp-mode)
diff --git a/clj-parse.el b/clj-parse.el
index 55d7ad4613..c3d9a6f3e5 100644
--- a/clj-parse.el
+++ b/clj-parse.el
@@ -4,7 +4,7 @@
;; Author: Arne Brasseur <[email protected]>
;; Keywords: lisp
-;; Package-Requires: ((dash "2.12.0") (emacs "25") (a "0.1.0alpha1"))
+;; Package-Requires: ((dash "2.12.0") (emacs "25") (a "0.1.0alpha2"))
;; Version: 0.1.0
;; This file is not part of GNU Emacs.
@@ -230,7 +230,7 @@
(defvar clj-edn-default-tag-readers
(a-list 'inst (lambda (s)
- (list* 'edn-inst (date-to-time s)))
+ (cl-list* 'edn-inst (date-to-time s)))
'uuid (lambda (s)
(list 'edn-uuid s)))
"Default reader functions for handling tagged literals in EDN.