Skip to content

Commit 5507c6c

Browse files
committed
Bump the Emacs dep to 24.3
1 parent a0758e3 commit 5507c6c

File tree

3 files changed

+2
-21
lines changed

3 files changed

+2
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ change `*cider-repl localhost*` to `*cider-repl foo*`.
916916
## Requirements
917917

918918
* [Leiningen](http://leiningen.org) 2.x (only for `cider-jack-in`)
919-
* [GNU Emacs](http://www.gnu.org/software/emacs/emacs.html) 24.1+.
919+
* [GNU Emacs](http://www.gnu.org/software/emacs/emacs.html) 24.3+.
920920
* [Clojure](http://clojure.org) 1.5.0+
921921

922922
## Caveats

cider-util.el

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,25 +34,6 @@
3434
(require 'cl-lib)
3535
(require 'clojure-mode)
3636

37-
;;; Compatibility
38-
(eval-and-compile
39-
;; `defvar-local' for Emacs 24.2 and below
40-
(unless (fboundp 'defvar-local)
41-
(defmacro defvar-local (var val &optional docstring)
42-
"Define VAR as a buffer-local variable with default value VAL.
43-
Like `defvar' but additionally marks the variable as being automatically
44-
buffer-local wherever it is set."
45-
(declare (debug defvar) (doc-string 3))
46-
`(progn
47-
(defvar ,var ,val ,docstring)
48-
(make-variable-buffer-local ',var))))
49-
50-
;; `setq-local' for Emacs 24.2 and below
51-
(unless (fboundp 'setq-local)
52-
(defmacro setq-local (var val)
53-
"Set variable VAR to value VAL in current buffer."
54-
`(set (make-local-variable ',var) ,val))))
55-
5637
(defun cider-util--hash-keys (hashtable)
5738
"Return a list of keys in HASHTABLE."
5839
(let ((keys '()))

cider.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;; Maintainer: Bozhidar Batsov <[email protected]>
1212
;; URL: http://www.github.com/clojure-emacs/cider
1313
;; Version: 0.9.0-cvs
14-
;; 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"))
14+
;; 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"))
1515
;; Keywords: languages, clojure, cider
1616

1717
;; This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)