summaryrefslogtreecommitdiff
path: root/cider-compat.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-10-20 09:03:04 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2015-10-20 09:03:04 +0300
commit04a0703f819d4311c2ea59381b5f3c5c389031de (patch)
treead80589b2420ae4537838fdc17310fa7b8e27cdc /cider-compat.el
parent778cc3d0244867b88ca0972010b28bfff8084483 (diff)
Fix some small issues in cider-compat.el
Diffstat (limited to 'cider-compat.el')
-rw-r--r--cider-compat.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/cider-compat.el b/cider-compat.el
index d1307336..e001eae5 100644
--- a/cider-compat.el
+++ b/cider-compat.el
@@ -1,4 +1,4 @@
-;;; cider-compat.el --- Contributed functions from other projects -*- lexical-binding: t -*-
+;;; cider-compat.el --- Functions from newer Emacs versions for compatibility -*- lexical-binding: t -*-
;; Copyright © 2012-2015 Tim King, Phil Hagelberg
;; Copyright © 2013-2015 Bozhidar Batsov, Hugo Duncan, Steve Purcell
@@ -19,9 +19,12 @@
;; This file is not part of GNU Emacs.
-;;; Code:
+;;; Commentary:
+
+;; Pretty much everything here's copied from subr-x for compatibility with
+;; Emacs 24.3 and 24.4.
-;;; copied from subr-x, as a dash replacement
+;;; Code:
(eval-and-compile
@@ -158,3 +161,4 @@ to bind a single value, BINDINGS can just be a plain tuple."
)
(provide 'cider-compat)
+;;; cider-compat.el ends here