summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-05-16 09:03:33 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2015-05-16 09:05:11 +0300
commit5507c6c2f3cae0d014a1c1aaebfc8e8a165bd66e (patch)
treecafda715261c57826385d830e66cf81cc366e5ee
parenta0758e36cbf2b583c3ab2ec083ee0cf1531cc23c (diff)
Bump the Emacs dep to 24.3
-rw-r--r--README.md2
-rw-r--r--cider-util.el19
-rw-r--r--cider.el2
3 files changed, 2 insertions, 21 deletions
diff --git a/README.md b/README.md
index 823da8e1..1ac744ef 100644
--- a/README.md
+++ b/README.md
@@ -916,7 +916,7 @@ change `*cider-repl localhost*` to `*cider-repl foo*`.
## Requirements
* [Leiningen](http://leiningen.org) 2.x (only for `cider-jack-in`)
-* [GNU Emacs](http://www.gnu.org/software/emacs/emacs.html) 24.1+.
+* [GNU Emacs](http://www.gnu.org/software/emacs/emacs.html) 24.3+.
* [Clojure](http://clojure.org) 1.5.0+
## Caveats
diff --git a/cider-util.el b/cider-util.el
index 3cdb6d43..e4f3cf2d 100644
--- a/cider-util.el
+++ b/cider-util.el
@@ -34,25 +34,6 @@
(require 'cl-lib)
(require 'clojure-mode)
-;;; Compatibility
-(eval-and-compile
- ;; `defvar-local' for Emacs 24.2 and below
- (unless (fboundp 'defvar-local)
- (defmacro defvar-local (var val &optional docstring)
- "Define VAR as a buffer-local variable with default value VAL.
-Like `defvar' but additionally marks the variable as being automatically
-buffer-local wherever it is set."
- (declare (debug defvar) (doc-string 3))
- `(progn
- (defvar ,var ,val ,docstring)
- (make-variable-buffer-local ',var))))
-
- ;; `setq-local' for Emacs 24.2 and below
- (unless (fboundp 'setq-local)
- (defmacro setq-local (var val)
- "Set variable VAR to value VAL in current buffer."
- `(set (make-local-variable ',var) ,val))))
-
(defun cider-util--hash-keys (hashtable)
"Return a list of keys in HASHTABLE."
(let ((keys '()))
diff --git a/cider.el b/cider.el
index 8f508ea6..4bc07de7 100644
--- a/cider.el
+++ b/cider.el
@@ -11,7 +11,7 @@
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.com>
;; URL: http://www.github.com/clojure-emacs/cider
;; Version: 0.9.0-cvs
-;; Package-Requires: ((clojure-mode "4.0.0") (cl-lib "0.5") (dash "2.4.1") (pkg-info "0.4") (emacs "24") (queue "0.1.1"))
+;; Package-Requires: ((clojure-mode "4.0.0") (cl-lib "0.5") (dash "2.4.1") (pkg-info "0.4") (emacs "24.3") (queue "0.1.1"))
;; Keywords: languages, clojure, cider
;; This program is free software: you can redistribute it and/or modify